Skip to content

Commit 83b1037

Browse files
committed
Release 0.8.0
1 parent a6a394a commit 83b1037

File tree

4 files changed

+19
-4
lines changed

4 files changed

+19
-4
lines changed

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "libloading"
33
# When bumping
44
# * Don’t forget to add an entry to `src/changelog.rs`
55
# * If bumping to an incompatible version, adjust the documentation in `src/lib.rs`
6-
version = "0.7.4"
6+
version = "0.8.0"
77
authors = ["Simonas Kazlauskas <[email protected]>"]
88
license = "ISC"
99
repository = "https://github.com/nagisa/rust_libloading/"

README.mkd

+5-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,11 @@
11
# libloading
22

3-
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.
3+
Bindings around the platform's dynamic library loading primitives with greatly improved memory
4+
safety. The most important safety guarantee of this library is the prevention of dangling `Symbol`s
5+
that may occur after a `Library` is unloaded.
46

5-
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.
7+
Using this library allows the loading of dynamic libraries, also known as shared libraries, as well
8+
as the use of the functions and static variables that these libraries may contain.
69

710
* [Documentation][docs]
811
* [Changelog][changelog]

src/changelog.rs

+12
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
//! The change log.
22
3+
/// Release 0.8.0 (2023-04-11)
4+
///
5+
/// ## (Potentially) breaking changes
6+
///
7+
/// * `winapi` dependency has been replaced with `windows-sys`.
8+
/// * As a result the MSRV has been increased to 1.48.
9+
///
10+
/// ## Non-breaking changes
11+
///
12+
/// * Support for the QNX Neutrino target has been added.
13+
pub mod r0_8_0 {}
14+
315
/// Release 0.7.4 (2022-11-07)
416
///
517
/// This release has no functional changes.

src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
//!
1717
//! ```toml
1818
//! [dependencies]
19-
//! libloading = "0.7"
19+
//! libloading = "0.8"
2020
//! ```
2121
//!
2222
//! # Usage

0 commit comments

Comments
 (0)