diff --git a/Cargo.toml b/Cargo.toml index 8308d07..0ef237c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "volatile" -version = "0.6.0" +version = "0.6.1" authors = ["Philipp Oppermann "] license = "MIT OR Apache-2.0" keywords = ["volatile"] diff --git a/Changelog.md b/Changelog.md index d77d5ce..8df4478 100644 --- a/Changelog.md +++ b/Changelog.md @@ -1,5 +1,7 @@ # Unreleased +# 0.6.1 – 2024-06-06 + # 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 diff --git a/volatile-macro/Cargo.toml b/volatile-macro/Cargo.toml index 304f5da..023106a 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.6.0", path = "..", features = ["derive"] } +volatile = { version = "=0.6.1", path = "..", features = ["derive"] }