From 189f39303a4fe760ccf2a4e4ca8f867b70103900 Mon Sep 17 00:00:00 2001 From: Simonas Kazlauskas Date: Thu, 7 Dec 2017 21:29:49 +0200 Subject: [PATCH] Release 0.4.3 --- Cargo.toml | 2 +- src/changelog.rs | 8 +++++++- 2 files changed, 8 insertions(+), 2 deletions(-) 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 {}