From 72c763c0bbafb6137bff7ff1e7af5a3f9755100b Mon Sep 17 00:00:00 2001 From: Simonas Kazlauskas Date: Tue, 27 May 2025 01:11:04 +0300 Subject: [PATCH] Release 0.8.8 --- Cargo.toml | 2 +- src/changelog.rs | 6 ++++++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 1c67c6cf8..3c087483c 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.7" +version = "0.8.8" authors = ["Simonas Kazlauskas "] license = "ISC" repository = "https://github.com/nagisa/rust_libloading/" diff --git a/src/changelog.rs b/src/changelog.rs index 6d77b7f15..58c3e2e90 100644 --- a/src/changelog.rs +++ b/src/changelog.rs @@ -1,5 +1,11 @@ //! The change log. +/// Release 0.8.8 (2025-05-27) +/// +/// ## Non-breaking changes +/// +/// Add `os::window::Library::pin`. +pub mod r0_8_8 {} /// Release 0.8.7 (2025-04-26) ///