Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release v0.6.0 #64

Merged
merged 3 commits into from
Jun 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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"] }