Skip to content

Commit 8b2f547

Browse files
authored
Merge pull request #64 from rust-osdev/release
Release v0.6.0
2 parents ac3a016 + 6aee211 commit 8b2f547

File tree

3 files changed

+13
-4
lines changed

3 files changed

+13
-4
lines changed

Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "volatile"
3-
version = "0.5.4"
3+
version = "0.6.0"
44
authors = ["Philipp Oppermann <[email protected]>"]
55
license = "MIT OR Apache-2.0"
66
keywords = ["volatile"]
@@ -11,7 +11,7 @@ repository = "https://github.com/rust-osdev/volatile"
1111
edition = "2021"
1212

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

1616
[features]
1717
derive = ["dep:volatile-macro"]

Changelog.md

+9
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# Unreleased
22

3+
# 0.6.0 – 2024-06-06
4+
5+
* **Breaking:** feat: introduce `RestrictAccess<To>` and generalize `restrict` to all access types by @mkroening in https://github.com/rust-osdev/volatile/pull/60
6+
* feat: implement derive macro for all access types by @mkroening in https://github.com/rust-osdev/volatile/pull/61
7+
* fix: add `#[must_use]` to volatile types, `read`, and `as_raw_ptr` by @mkroening in https://github.com/rust-osdev/volatile/pull/58
8+
* Add a semver checks CI job by @phil-opp in https://github.com/rust-osdev/volatile/pull/63
9+
10+
**Full Changelog**: https://github.com/rust-osdev/volatile/compare/v0.5.4...0.6.0
11+
312
# 0.5.4 – 2024-04-26
413

514
* fix(access): properly seal access traits by @mkroening in https://github.com/rust-osdev/volatile/pull/59

volatile-macro/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "volatile-macro"
3-
version = "0.5.4"
3+
version = "0.6.0"
44
authors = ["Martin Kröning <[email protected]>"]
55
edition = "2021"
66
description = "Procedural macros for the volatile crate."
@@ -18,4 +18,4 @@ quote = "1"
1818
syn = { version = "2", features = ["full"] }
1919

2020
[dev-dependencies]
21-
volatile = { version = "=0.5.4", path = "..", features = ["derive"] }
21+
volatile = { version = "=0.6.0", path = "..", features = ["derive"] }

0 commit comments

Comments
 (0)