Skip to content

Commit 31d2081

Browse files
Merge #410
410: Prepare 0.17.0 release r=burrbull a=therealprof Signed-off-by: Daniel Egger <daniel@eggers-club.de> Co-authored-by: Daniel Egger <daniel@eggers-club.de>
2 parents 3909ec2 + c53fdb0 commit 31d2081

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

CHANGELOG.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,17 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
77

88
## [Unreleased]
99

10+
## [v0.17.0] - 2019-12-31
11+
1012
### Fixed
1113

1214
- Properly use of default RegisterProperties.
1315

1416
### Changed
1517

18+
- Simplified code generation and sped up svd2rust by a some hundred percent
19+
- Represent interrupts directly as `u8` to avoid jump table generation
20+
- Added explicit #[inline] attributes to `Deref` impls
1621
- Enum items now associated with values (C-style), enums annotated with `repr(fty)`
1722
- Bump `svd-parser` dependency (0.9.0)
1823
- Switched from denying all warnings to only a subset.
@@ -496,7 +501,8 @@ peripheral.register.write(|w| w.field().set());
496501

497502
- Initial version of the `svd2rust` tool
498503

499-
[Unreleased]: https://github.com/rust-embedded/svd2rust/compare/v0.16.1...HEAD
504+
[Unreleased]: https://github.com/rust-embedded/svd2rust/compare/v0.17.0...HEAD
505+
[v0.17.0]: https://github.com/rust-embedded/svd2rust/compare/v0.16.1...v0.17.0
500506
[v0.16.1]: https://github.com/rust-embedded/svd2rust/compare/v0.16.0...v0.16.1
501507
[v0.16.0]: https://github.com/rust-embedded/svd2rust/compare/v0.15.2...v0.16.0
502508
[v0.15.2]: https://github.com/rust-embedded/svd2rust/compare/v0.15.1...v0.15.2

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ keywords = [
2323
license = "MIT OR Apache-2.0"
2424
name = "svd2rust"
2525
repository = "https://github.com/rust-embedded/svd2rust/"
26-
version = "0.16.1"
26+
version = "0.17.0"
2727
readme = "README.md"
2828

2929
[[bin]]

0 commit comments

Comments
 (0)