Release 0.4.0

This commit is contained in:
Simonas Kazlauskas
2017-05-02 16:25:22 +03:00
parent ed03040353
commit d4b06babbf
2 changed files with 5 additions and 3 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
[package]
name = "libloading"
version = "0.3.4"
version = "0.4.0"
authors = ["Simonas Kazlauskas <libloading@kazlauskas.me>"]
build = "build.rs"
description = "A safer binding to platforms dynamic library loading utilities"
+4 -2
View File
@@ -1,10 +1,12 @@
//! Project changelog
/// Release 0.x.y (2017-05-01)
/// Release 0.4.0 (2017-05-01)
///
/// * Remove build-time dependency on target_build_utils (and by extension serde/phf);
/// * Require at least version 1.14.0 of rustc to build;
pub mod r0_x_y {}
/// * Actually, it is cargo which has to be more recent here. The one shipped with rustc 1.14.0
/// is whats being required from now on.
pub mod r0_4_0 {}
/// Release 0.3.4 (2017-03-25)
///