Bump v0.6.6

This commit is contained in:
Simonas Kazlauskas
2020-12-03 15:20:46 +02:00
parent 86b5095f75
commit ad352b2ae2
2 changed files with 11 additions and 2 deletions
+1 -1
View File
@@ -3,7 +3,7 @@ name = "libloading"
# When bumping
# * Dont 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 <libloading@kazlauskas.me>"]
license = "ISC"
repository = "https://github.com/nagisa/rust_libloading/"
+10 -1
View File
@@ -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)