Skip to content

Commit d19027e

Browse files
authored
Merge pull request #62 from rust-osdev/release
Release v0.5.4
2 parents e683a4f + 6f969d7 commit d19027e

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
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.3"
3+
version = "0.5.4"
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.3", optional = true, path = "volatile-macro" }
14+
volatile-macro = { version = "=0.5.4", optional = true, path = "volatile-macro" }
1515

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

Changelog.md

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

3+
# 0.5.4 – 2024-04-26
4+
5+
* fix(access): properly seal access traits by @mkroening in https://github.com/rust-osdev/volatile/pull/59
6+
* fix(macro): support `#[repr(align(N))]` in `#[derive(VolatileFieldAccess)]` macro by @mkroening in https://github.com/rust-osdev/volatile/pull/57
7+
* Fix warnings by @mkroening in https://github.com/rust-osdev/volatile/pull/56
8+
39
# 0.5.3 – 2024-04-21
410

511
* Add `#[derive(VolatileFieldAccess)]` for easy, access-limited field-based access to structs by @mkroening in https://github.com/rust-osdev/volatile/pull/49

volatile-macro/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "volatile-macro"
3-
version = "0.5.3"
3+
version = "0.5.4"
44
authors = ["Martin Kröning <[email protected]>"]
55
edition = "2021"
66
description = "Procedural macros for the volatile crate."

0 commit comments

Comments
 (0)