Skip to content

Commit 1a9c8eb

Browse files
committed
Release 0.15.1
Signed-off-by: Daniel Egger <[email protected]>
1 parent 8228e20 commit 1a9c8eb

File tree

2 files changed

+12
-3
lines changed

2 files changed

+12
-3
lines changed

CHANGELOG.md

+9-2
Original file line numberDiff line numberDiff line change
@@ -7,17 +7,23 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
77

88
## [Unreleased]
99

10+
## [v0.15.1] - 2019-07-29
11+
1012
### Added
1113

1214
- Support of 64-bit fields
1315

1416
### Changed
1517

18+
- Modernize `svd2rust-regress`
19+
1620
- Break ultra-long single line output into multiple lines for better usability
21+
1722
- Joined field write proxy into a single line to help dev builds
23+
1824
- Elimated useless 0 shifts to reduce generated code size and fix a clippy lint
1925

20-
- Replace field readers with generic `FR` type
26+
- Replace field readers with generic `FR` type
2127

2228
### Fixed
2329

@@ -438,7 +444,8 @@ peripheral.register.write(|w| w.field().set());
438444

439445
- Initial version of the `svd2rust` tool
440446

441-
[Unreleased]: https://github.com/rust-embedded/svd2rust/compare/v0.15.0...HEAD
447+
[Unreleased]: https://github.com/rust-embedded/svd2rust/compare/v0.15.1...HEAD
448+
[v0.15.1]: https://github.com/rust-embedded/svd2rust/compare/v0.15.0...v0.15.1
442449
[v0.15.0]: https://github.com/rust-embedded/svd2rust/compare/v0.14.0...v0.15.0
443450
[v0.14.0]: https://github.com/rust-embedded/svd2rust/compare/v0.13.1...v0.14.0
444451
[v0.13.1]: https://github.com/rust-embedded/svd2rust/compare/v0.13.0...v0.13.1

Cargo.toml

+3-1
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,16 @@ documentation = "https://docs.rs/svd2rust"
1616
keywords = [
1717
"arm",
1818
"cortex-m",
19+
"riscv",
20+
"msp430",
1921
"register",
2022
"map",
2123
"generator",
2224
]
2325
license = "MIT OR Apache-2.0"
2426
name = "svd2rust"
2527
repository = "https://github.com/rust-embedded/svd2rust/"
26-
version = "0.15.0"
28+
version = "0.15.1"
2729
readme = "README.md"
2830

2931
[[bin]]

0 commit comments

Comments
 (0)