From ad352b2ae28c5b70c2c69ce722033b6b5e813a8c Mon Sep 17 00:00:00 2001 From: Simonas Kazlauskas Date: Thu, 3 Dec 2020 15:20:46 +0200 Subject: [PATCH] Bump v0.6.6 --- Cargo.toml | 2 +- src/changelog.rs | 11 ++++++++++- 2 files changed, 11 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 23324db..6e4696b 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 a incompatible version, adjust documentation in `src/lib.rs` -version = "0.6.5" +version = "0.6.6" authors = ["Simonas Kazlauskas "] license = "ISC" repository = "https://github.com/nagisa/rust_libloading/" diff --git a/src/changelog.rs b/src/changelog.rs index 7d058b8..0ae7323 100644 --- a/src/changelog.rs +++ b/src/changelog.rs @@ -3,6 +3,15 @@ // TODO: for the next breaking release rename `Error::LoadLibraryW` to `Error::LoadLibraryExW`. // TODO: for the next breaking release use `RTLD_LAZY | RTLD_LOCAL` by default on unix. +/// Release 0.6.6 (2020-12-03) +/// +/// * Fix a double-release of resources when [`Library::close`] or [`os::windows::Library::close`] +/// is used on Windows. +/// +/// [`Library::close`]: crate::Library::close +/// [`os::windows::Library::close`]: crate::os::windows::Library::close +pub mod r0_6_6 {} + /// Release 0.6.5 (2020-10-23) /// /// * Upgrade cfg-if 0.1 to 1.0 @@ -11,7 +20,7 @@ pub mod r0_6_5 {} /// Release 0.6.4 (2020-10-10) /// /// * Remove use of `build.rs` making it easier to build `libloading` without cargo. It also -/// almost halves the build time of this crate. +/// almost halves the build time of this crate. pub mod r0_6_4 {} /// Release 0.6.3 (2020-08-22)