Skip to content

Commit bf20bc0

Browse files
committed
release 0.8.7
1 parent fe29b71 commit bf20bc0

File tree

3 files changed

+10
-3
lines changed

3 files changed

+10
-3
lines changed

.github/workflows/libloading.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
strategy:
1616
fail-fast: false
1717
matrix:
18-
rust_toolchain: [nightly, stable, 1.56.0]
18+
rust_toolchain: [nightly, stable, 1.63.0]
1919
os: [ubuntu-latest, windows-latest, macOS-latest]
2020
timeout-minutes: 20
2121
steps:
@@ -24,7 +24,7 @@ jobs:
2424
- run: rustup default ${{ matrix.rust_toolchain }}
2525
- run: rustup component add clippy
2626
- run: cargo update -p libc --precise 0.2.155
27-
if: ${{ matrix.rust_toolchain == '1.56.0' }}
27+
if: ${{ matrix.rust_toolchain == '1.63.0' }}
2828
- run: cargo clippy
2929
- run: cargo test -- --nocapture
3030
- run: cargo test --release -- --nocapture

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "libloading"
33
# When bumping
44
# * Don’t forget to add an entry to `src/changelog.rs`
55
# * If bumping to an incompatible version, adjust the documentation in `src/lib.rs`
6-
version = "0.8.6"
6+
version = "0.8.7"
77
authors = ["Simonas Kazlauskas <[email protected]>"]
88
license = "ISC"
99
repository = "https://github.com/nagisa/rust_libloading/"

src/changelog.rs

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
11
//! The change log.
22
33

4+
/// Release 0.8.7 (2025-04-26)
5+
///
6+
/// ## Non-breaking changes
7+
///
8+
/// Add support for the `*-pc-cygwin` target.
9+
pub mod r0_8_7 {}
10+
411
/// Release 0.8.4 (2024-06-23)
512
///
613
/// ## Non-breaking changes

0 commit comments

Comments
 (0)