Skip to content
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

Release 0.8.2 #138

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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.1"
version = "0.8.2"
authors = ["Simonas Kazlauskas <libloading@kazlauskas.me>"]
license = "ISC"
repository = "https://github.com/nagisa/rust_libloading/"
Expand All @@ -15,7 +15,7 @@ categories = ["api-bindings"]
rust-version = "1.48.0"

[target.'cfg(windows)'.dependencies.windows-sys]
version = "0.48"
version = ">=0.48, <0.53"
features = [
"Win32_Foundation",
"Win32_System_Diagnostics_Debug",
Expand Down
8 changes: 8 additions & 0 deletions src/changelog.rs
Original file line number Diff line number Diff line change
@@ -1,10 +1,18 @@
//! The change log.

/// Release 0.8.2 (2024-03-01)
///
/// ## Non-breaking changes
///
/// * Allow `windows-sys` dependency up to the currently most recent 0.52.
pub mod r0_8_2 {}

/// Release 0.8.1 (2023-09-30)
///
/// ## Non-breaking changes
///
/// * Support for GNU Hurd.
pub mod r0_8_1 {}

/// Release 0.8.0 (2023-04-11)
///
Expand Down
Loading