Skip to content

Commit 7bbf368

Browse files
committed
tock-registers: release v0.6
Changes since v0.5: - #2095: Fix syntax errors and inconsistencies in documentation - #2071: Clarify bit widths in documentation examples - #2015: Use UnsafeCell in registers (see issue #2005) - #1939: Make the Field::mask and FieldValue::mask fields private - #1823: Allow large unsigned values as bitmasks + add bitmask! helper macro - #1554: Allow lifetime parameters for `register_structs! { Foo<'a> { ..` - #1661: Add `Aliased` register type for MMIO with differing R/W behavior Thanks to @namyoonw, @brghena, @dabross, @gendx, @hudson-ayers, and @pfmooney for contributions, fixes, and testing! Closes #2138.
1 parent efe4680 commit 7bbf368

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

libraries/tock-register-interface/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22

33
## master
44

5+
## v0.6
6+
7+
- #2095: Fix syntax errors and inconsistencies in documentation
8+
- #2071: Clarify bit widths in documentation examples
9+
- #2015: Use UnsafeCell in registers (see issue #2005)
10+
- #1939: Make the Field::mask and FieldValue::mask fields private
511
- #1823: Allow large unsigned values as bitmasks + add bitmask! helper macro
612
- #1554: Allow lifetime parameters for `register_structs! { Foo<'a> { ..`
713
- #1661: Add `Aliased` register type for MMIO with differing R/W behavior

libraries/tock-register-interface/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tock-registers"
3-
version = "0.5.0"
3+
version = "0.6.0"
44
authors = ["Tock Project Developers <[email protected]>"]
55
description = "Memory-Mapped I/O and register interface developed for Tock."
66
homepage = "https://www.tockos.org/"

0 commit comments

Comments
 (0)