Skip to content

release 0.8.7 #176

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 2 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions .github/workflows/libloading.yml
Original file line number Diff line number Diff line change
@@ -15,7 +15,7 @@ jobs:
strategy:
fail-fast: false
matrix:
rust_toolchain: [nightly, stable, 1.56.0]
rust_toolchain: [nightly, stable, 1.63.0]
os: [ubuntu-latest, windows-latest, macOS-latest]
timeout-minutes: 20
steps:
@@ -24,7 +24,7 @@ jobs:
- run: rustup default ${{ matrix.rust_toolchain }}
- run: rustup component add clippy
- run: cargo update -p libc --precise 0.2.155
if: ${{ matrix.rust_toolchain == '1.56.0' }}
if: ${{ matrix.rust_toolchain == '1.63.0' }}
- run: cargo clippy
- run: cargo test -- --nocapture
- run: cargo test --release -- --nocapture
@@ -58,7 +58,6 @@ jobs:
with:
release: false
install: ${{ matrix.package }}
- run: echo "c:/msys64/bin" | Out-File -FilePath $env:GITHUB_PATH -Append
- run: echo "${{ matrix.mingw_path }}" | Out-File -FilePath $env:GITHUB_PATH -Append
if: ${{ matrix.mingw_path }}"
- run: cargo test --target ${{ matrix.rust_target }}
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -3,7 +3,7 @@ name = "libloading"
# When bumping
# * Don’t forget to add an entry to `src/changelog.rs`
# * If bumping to an incompatible version, adjust the documentation in `src/lib.rs`
version = "0.8.6"
version = "0.8.7"
authors = ["Simonas Kazlauskas <[email protected]>"]
license = "ISC"
repository = "https://github.com/nagisa/rust_libloading/"
7 changes: 7 additions & 0 deletions src/changelog.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
//! The change log.


/// Release 0.8.7 (2025-04-26)
///
/// ## Non-breaking changes
///
/// Add support for the `*-pc-cygwin` target.
pub mod r0_8_7 {}

/// Release 0.8.4 (2024-06-23)
///
/// ## Non-breaking changes