Skip to content

Commit

Permalink
Merge pull request #64 from rust-osdev/release
Browse files Browse the repository at this point in the history
Release v0.6.0
  • Loading branch information
phil-opp committed Jun 6, 2024
2 parents ac3a016 + 6aee211 commit 8b2f547
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "volatile"
version = "0.5.4"
version = "0.6.0"
authors = ["Philipp Oppermann <[email protected]>"]
license = "MIT OR Apache-2.0"
keywords = ["volatile"]
Expand All @@ -11,7 +11,7 @@ repository = "https://github.com/rust-osdev/volatile"
edition = "2021"

[dependencies]
volatile-macro = { version = "=0.5.4", optional = true, path = "volatile-macro" }
volatile-macro = { version = "=0.6.0", optional = true, path = "volatile-macro" }

[features]
derive = ["dep:volatile-macro"]
Expand Down
9 changes: 9 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Unreleased

# 0.6.0 – 2024-06-06

* **Breaking:** feat: introduce `RestrictAccess<To>` 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
* Add a semver checks CI job by @phil-opp in https://github.com/rust-osdev/volatile/pull/63

**Full Changelog**: https://github.com/rust-osdev/volatile/compare/v0.5.4...0.6.0

# 0.5.4 – 2024-04-26

* fix(access): properly seal access traits by @mkroening in https://github.com/rust-osdev/volatile/pull/59
Expand Down
4 changes: 2 additions & 2 deletions volatile-macro/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "volatile-macro"
version = "0.5.4"
version = "0.6.0"
authors = ["Martin Kröning <[email protected]>"]
edition = "2021"
description = "Procedural macros for the volatile crate."
Expand All @@ -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"] }

0 comments on commit 8b2f547

Please sign in to comment.