From 2b67ea3fe9265727e19195eb4caa88bc4613766d Mon Sep 17 00:00:00 2001 From: Simonas Kazlauskas Date: Fri, 23 Oct 2020 17:12:03 +0300 Subject: [PATCH] Bump to 0.6.5 --- Cargo.toml | 2 +- src/changelog.rs | 5 +++++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 5ceee2b..23324db 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.4" +version = "0.6.5" authors = ["Simonas Kazlauskas "] license = "ISC" repository = "https://github.com/nagisa/rust_libloading/" diff --git a/src/changelog.rs b/src/changelog.rs index 250dd7c..7d058b8 100644 --- a/src/changelog.rs +++ b/src/changelog.rs @@ -3,6 +3,11 @@ // 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.5 (2020-10-23) +/// +/// * Upgrade cfg-if 0.1 to 1.0 +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