diff --git a/Cargo.toml b/Cargo.toml index 22e1845..bd1114b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "libloading" -version = "0.6.1" +version = "0.6.2" 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 68b6c54..952eb5e 100644 --- a/src/changelog.rs +++ b/src/changelog.rs @@ -2,6 +2,11 @@ // TODO: for the next breaking release rename `Error::LoadLibraryW` to `Error::LoadLibraryExW`. +/// Release 0.6.2 (2020-05-06) +/// +/// * Fixed building of this library on Illumos. +pub mod r0_6_2 {} + /// Release 0.6.1 (2020-04-15) /// /// * Introduced a new method [`os::windows::Library::load_with_flags`];