Skip to content

Commit

Permalink
Release 0.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
nagisa committed Apr 11, 2023
1 parent a6a394a commit 83b1037
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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/"
Expand Down
7 changes: 5 additions & 2 deletions README.mkd
Original file line number Diff line number Diff line change
@@ -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]
Expand Down
12 changes: 12 additions & 0 deletions src/changelog.rs
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
//!
//! ```toml
//! [dependencies]
//! libloading = "0.7"
//! libloading = "0.8"
//! ```
//!
//! # Usage
Expand Down

0 comments on commit 83b1037

Please sign in to comment.