File tree Expand file tree Collapse file tree 2 files changed +20
-3
lines changed Expand file tree Collapse file tree 2 files changed +20
-3
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,23 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
77
88## [ Unreleased]
99
10+ ## [ v0.15.0] - 2019-07-25
11+
12+ - Logging system was introduced by ` log ` crate.
13+
14+ - ` svd2rust ` can be used as library.
15+
16+ - ` derive_from ` now can be used for registers.
17+
18+ - [ breaking-change] for access to alternate registers functions now used
19+ instead of untagged_unions (no more nightly ` features ` )
20+
21+ - generated code now more compact and compilation faster
22+
23+ - ` reset_value ` now public const method of register structure
24+
25+ - ` Clone ` , ` Copy ` , ` Debug ` , ` PartialEq ` implemented for read/write enums
26+
1027## [ v0.14.0] - 2018-12-07
1128
1229### Added
@@ -405,7 +422,8 @@ peripheral.register.write(|w| w.field().set());
405422
406423- Initial version of the ` svd2rust ` tool
407424
408- [ Unreleased ] : https://github.com/rust-embedded/svd2rust/compare/v0.14.0...HEAD
425+ [ Unreleased ] : https://github.com/rust-embedded/svd2rust/compare/v0.15.0...HEAD
426+ [ v0.15.0 ] : https://github.com/rust-embedded/svd2rust/compare/v0.14.0...v0.15.0
409427[ v0.14.0 ] : https://github.com/rust-embedded/svd2rust/compare/v0.13.1...v0.14.0
410428[ v0.13.1 ] : https://github.com/rust-embedded/svd2rust/compare/v0.13.0...v0.13.1
411429[ v0.13.0 ] : https://github.com/rust-embedded/svd2rust/compare/v0.12.1...v0.13.0
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ keywords = [
2020license = " MIT OR Apache-2.0"
2121name = " svd2rust"
2222repository = " https://github.com/japaric/svd2rust"
23- version = " 0.14 .0"
23+ version = " 0.15 .0"
2424
2525[[bin ]]
2626doc = false
@@ -30,7 +30,6 @@ path = "src/main.rs"
3030[dependencies ]
3131cast = " 0.2.2"
3232clap = " 2.26.0"
33- either = " 1.0.3"
3433env_logger = " ~0.5"
3534error-chain = " 0.11.0"
3635inflections = " 1.1.0"
You can’t perform that action at this time.
0 commit comments