From 1ec5762d8fc2d3d3459579b96bcce346cf853d45 Mon Sep 17 00:00:00 2001 From: Philipp Oppermann Date: Thu, 6 Jun 2024 13:44:05 +0200 Subject: [PATCH] chore: Release --- Cargo.toml | 2 +- Changelog.md | 2 ++ volatile-macro/Cargo.toml | 2 +- 3 files changed, 4 insertions(+), 2 deletions(-) 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"] }