Release 0.8.0

This commit is contained in:
Simonas Kazlauskas 2023-04-11 15:54:38 +03:00
parent a6a394a7ef
commit 83b1037f21
4 changed files with 19 additions and 4 deletions

View File

@ -3,7 +3,7 @@ name = "libloading"
# When bumping # When bumping
# * Dont forget to add an entry to `src/changelog.rs` # * Dont forget to add an entry to `src/changelog.rs`
# * If bumping to an incompatible version, adjust the documentation in `src/lib.rs` # * If bumping to an incompatible version, adjust the documentation in `src/lib.rs`
version = "0.7.4" version = "0.8.0"
authors = ["Simonas Kazlauskas <libloading@kazlauskas.me>"] authors = ["Simonas Kazlauskas <libloading@kazlauskas.me>"]
license = "ISC" license = "ISC"
repository = "https://github.com/nagisa/rust_libloading/" repository = "https://github.com/nagisa/rust_libloading/"

View File

@ -1,8 +1,11 @@
# libloading # libloading
Bindings around the platform's dynamic library loading primitives with greatly improved memory safety. The most important safety guarantee of this library is the prevention of dangling `Symbol`s that may occur after a `Library` is unloaded. Bindings around the platform's dynamic library loading primitives with greatly improved memory
safety. The most important safety guarantee of this library is the prevention of dangling `Symbol`s
that may occur after a `Library` is unloaded.
Using this library allows the loading of dynamic libraries, also known as shared libraries, as well as the use of the functions and static variables that these libraries may contain. Using this library allows the loading of dynamic libraries, also known as shared libraries, as well
as the use of the functions and static variables that these libraries may contain.
* [Documentation][docs] * [Documentation][docs]
* [Changelog][changelog] * [Changelog][changelog]

View File

@ -1,5 +1,17 @@
//! The change log. //! The change log.
/// Release 0.8.0 (2023-04-11)
///
/// ## (Potentially) breaking changes
///
/// * `winapi` dependency has been replaced with `windows-sys`.
/// * As a result the MSRV has been increased to 1.48.
///
/// ## Non-breaking changes
///
/// * Support for the QNX Neutrino target has been added.
pub mod r0_8_0 {}
/// Release 0.7.4 (2022-11-07) /// Release 0.7.4 (2022-11-07)
/// ///
/// This release has no functional changes. /// This release has no functional changes.

View File

@ -16,7 +16,7 @@
//! //!
//! ```toml //! ```toml
//! [dependencies] //! [dependencies]
//! libloading = "0.7" //! libloading = "0.8"
//! ``` //! ```
//! //!
//! # Usage //! # Usage