diff --git a/Cargo.toml b/Cargo.toml index 585bac4..8308f1e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "libloading" -version = "0.4.2" +version = "0.4.3" authors = ["Simonas Kazlauskas "] build = "build.rs" description = "A safer binding to platform’s dynamic library loading utilities" diff --git a/src/changelog.rs b/src/changelog.rs index ee3fa36..fedec30 100644 --- a/src/changelog.rs +++ b/src/changelog.rs @@ -1,11 +1,17 @@ //! Project changelog +/// Release 0.4.3 (2017-12-07) +/// +/// * Bump lazy-static dependency to `^1.0` +/// * `cargo test --release` now works when testing libloading. +pub mod r0_4_3 {} + /// Release 0.4.2 (2017-09-24) /// /// * Improved error and race-condition handling on Windows; /// * Improved documentation about thread-safety of Library; -/// * Added Symbol::::lift_option() -> Option> convenience method. +/// * Added `Symbol::::lift_option() -> Option>` convenience method. pub mod r0_4_2 {}