diff --git a/.github/workflows/libloading.yml b/.github/workflows/libloading.yml index 7cf5b3105..8c1ebe290 100644 --- a/.github/workflows/libloading.yml +++ b/.github/workflows/libloading.yml @@ -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 }} diff --git a/Cargo.toml b/Cargo.toml index 75e146265..1c67c6cf8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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 "] license = "ISC" repository = "https://github.com/nagisa/rust_libloading/" diff --git a/src/changelog.rs b/src/changelog.rs index 0b6910633..6d77b7f15 100644 --- a/src/changelog.rs +++ b/src/changelog.rs @@ -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