diff --git a/Cargo.toml b/Cargo.toml index dd6b5b4..d09832e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "volatile" -version = "0.5.2" +version = "0.5.3" authors = ["Philipp Oppermann "] license = "MIT OR Apache-2.0" keywords = ["volatile"] @@ -11,7 +11,7 @@ repository = "https://github.com/rust-osdev/volatile" edition = "2021" [dependencies] -volatile-macro = { version = "=0.5.2", optional = true, path = "volatile-macro" } +volatile-macro = { version = "=0.5.3", optional = true, path = "volatile-macro" } [features] derive = ["dep:volatile-macro"] diff --git a/Changelog.md b/Changelog.md index e0e882d..41fc963 100644 --- a/Changelog.md +++ b/Changelog.md @@ -1,6 +1,13 @@ # Unreleased -- Add `VolatileRef::borrow` and `VolatileRef::borrow_mut` +# 0.5.3 – 2024-04-21 + +* Add `#[derive(VolatileFieldAccess)]` for easy, access-limited field-based access to structs by @mkroening in https://github.com/rust-osdev/volatile/pull/49 +* Add `VolatileRef::restrict` and `VolatilePtr::restrict` by @mkroening in https://github.com/rust-osdev/volatile/pull/47 +* Add `VolatileRef::borrow` and `VolatileRef::borrow_mut` by @mkroening in https://github.com/rust-osdev/volatile/pull/46 +* Add support for nested `map_field` operations by @phil-opp in https://github.com/rust-osdev/volatile/pull/50 +* docs: remove unused `NonNull` imports by @mkroening in https://github.com/rust-osdev/volatile/pull/48 +* fix(Cargo.toml): add categories by @mkroening in https://github.com/rust-osdev/volatile/pull/52 # 0.5.2 – 2024-03-22 diff --git a/volatile-macro/Cargo.toml b/volatile-macro/Cargo.toml index 24c4ba2..20e9ef6 100644 --- a/volatile-macro/Cargo.toml +++ b/volatile-macro/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "volatile-macro" -version = "0.5.2" +version = "0.5.3" authors = ["Martin Kröning "] edition = "2021" description = "Procedural macros for the volatile crate."