Release 0.8.0
This commit is contained in:
parent
a6a394a7ef
commit
83b1037f21
|
@ -3,7 +3,7 @@ name = "libloading"
|
|||
# When bumping
|
||||
# * Don’t forget to add an entry to `src/changelog.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>"]
|
||||
license = "ISC"
|
||||
repository = "https://github.com/nagisa/rust_libloading/"
|
||||
|
|
|
@ -1,8 +1,11 @@
|
|||
# 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]
|
||||
* [Changelog][changelog]
|
||||
|
|
|
@ -1,5 +1,17 @@
|
|||
//! 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)
|
||||
///
|
||||
/// This release has no functional changes.
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
//!
|
||||
//! ```toml
|
||||
//! [dependencies]
|
||||
//! libloading = "0.7"
|
||||
//! libloading = "0.8"
|
||||
//! ```
|
||||
//!
|
||||
//! # Usage
|
||||
|
|
Loading…
Reference in New Issue