Skip to content

Commit d48163f

Browse files
committed
tock-registers: release v0.7
**This is expected to be the final release before 1.0** v0.7 CHANGELOG - #2642: Rename `IntLike` to `UIntLike` to match semantics - #2618: Reorganize, document, and feature-gate modules and exports - #2589: Upgrade nightly for `const_fn` -> `const_fn_trait_bound` - #2517: Use traits for accessing / manipulating registers - #2512: Fix `Copy` and `Clone` implementation on `Field` - #2300: Add support for `usize` - #2220: Remove duplicate code, make local register copy read-write - #2210: Add `u128` to `IntLike` - #2197: Accept trailing comma in bitfields and bitmasks Thank you to @berkus, @Cryptjar, and to all of the Tock core team members (especially @lschuermann!) for their contributions to this release! Closes #2579.
1 parent de2d5fc commit d48163f

File tree

2 files changed

+13
-1
lines changed

2 files changed

+13
-1
lines changed

libraries/tock-register-interface/CHANGELOG.md

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

33
## master
44

5+
## v0.7
6+
7+
- #2642: Rename `IntLike` to `UIntLike` to match semantics
8+
- #2618: Reorganize, document, and feature-gate modules and exports
9+
- #2589: Upgrade nightly for `const_fn` -> `const_fn_trait_bound`
10+
- #2517: Use traits for accessing / manipulating registers
11+
- #2512: Fix `Copy` and `Clone` implementation on `Field`
12+
- #2300: Add support for `usize`
13+
- #2220: Remove duplicate code, make local register copy read-write
14+
- #2210: Add `u128` to `IntLike`
15+
- #2197: Accept trailing comma in bitfields and bitmasks
16+
517
## v0.6
618

719
- #2095: Fix syntax errors and inconsistencies in documentation

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.6.0"
3+
version = "0.7.0"
44
authors = ["Tock Project Developers <tock-dev@googlegroups.com>"]
55
description = "Memory-Mapped I/O and register interface developed for Tock."
66
homepage = "https://www.tockos.org/"

0 commit comments

Comments
 (0)