Release 0.4.3

This commit is contained in:
Simonas Kazlauskas
2017-12-07 21:29:49 +02:00
parent 77c7b40ba7
commit 189f39303a
2 changed files with 8 additions and 2 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
[package]
name = "libloading"
version = "0.4.2"
version = "0.4.3"
authors = ["Simonas Kazlauskas <libloading@kazlauskas.me>"]
build = "build.rs"
description = "A safer binding to platforms dynamic library loading utilities"
+7 -1
View File
@@ -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::<Option<T>::lift_option() -> Option<Symbol<T>> convenience method.
/// * Added `Symbol::<Option<T>::lift_option() -> Option<Symbol<T>>` convenience method.
pub mod r0_4_2 {}