File tree 2 files changed +8
-2
lines changed 2 files changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -7,12 +7,17 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
7
7
8
8
## [ Unreleased]
9
9
10
+ ## [ v0.17.0] - 2019-12-31
11
+
10
12
### Fixed
11
13
12
14
- Properly use of default RegisterProperties.
13
15
14
16
### Changed
15
17
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
16
21
- Enum items now associated with values (C-style), enums annotated with ` repr(fty) `
17
22
- Bump ` svd-parser ` dependency (0.9.0)
18
23
- Switched from denying all warnings to only a subset.
@@ -496,7 +501,8 @@ peripheral.register.write(|w| w.field().set());
496
501
497
502
- Initial version of the ` svd2rust ` tool
498
503
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
500
506
[ v0.16.1 ] : https://github.com/rust-embedded/svd2rust/compare/v0.16.0...v0.16.1
501
507
[ v0.16.0 ] : https://github.com/rust-embedded/svd2rust/compare/v0.15.2...v0.16.0
502
508
[ v0.15.2 ] : https://github.com/rust-embedded/svd2rust/compare/v0.15.1...v0.15.2
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ keywords = [
23
23
license = " MIT OR Apache-2.0"
24
24
name = " svd2rust"
25
25
repository = " https://github.com/rust-embedded/svd2rust/"
26
- version = " 0.16.1 "
26
+ version = " 0.17.0 "
27
27
readme = " README.md"
28
28
29
29
[[bin ]]
You can’t perform that action at this time.
0 commit comments