diff --git a/Cargo.toml b/Cargo.toml index abf9cc0..8e4fa22 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "volatile" -version = "0.5.4" +version = "0.6.0" authors = ["Philipp Oppermann "] license = "MIT OR Apache-2.0" keywords = ["volatile"] diff --git a/Changelog.md b/Changelog.md index 90c0783..d77d5ce 100644 --- a/Changelog.md +++ b/Changelog.md @@ -1,5 +1,7 @@ # Unreleased +# 0.6.0 – 2024-06-06 + * **Breaking:** feat: introduce `RestrictAccess` and generalize `restrict` to all access types by @mkroening in https://github.com/rust-osdev/volatile/pull/60 * feat: implement derive macro for all access types by @mkroening in https://github.com/rust-osdev/volatile/pull/61 * fix: add `#[must_use]` to volatile types, `read`, and `as_raw_ptr` by @mkroening in https://github.com/rust-osdev/volatile/pull/58 diff --git a/volatile-macro/Cargo.toml b/volatile-macro/Cargo.toml index 8f17c47..e5b724a 100644 --- a/volatile-macro/Cargo.toml +++ b/volatile-macro/Cargo.toml @@ -18,4 +18,4 @@ quote = "1" syn = { version = "2", features = ["full"] } [dev-dependencies] -volatile = { version = "=0.5.4", path = "..", features = ["derive"] } +volatile = { version = "=0.6.0", path = "..", features = ["derive"] }