File tree 2 files changed +20
-3
lines changed
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/).
7
7
8
8
## [ Unreleased]
9
9
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
+
10
27
## [ v0.14.0] - 2018-12-07
11
28
12
29
### Added
@@ -405,7 +422,8 @@ peripheral.register.write(|w| w.field().set());
405
422
406
423
- Initial version of the ` svd2rust ` tool
407
424
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
409
427
[ v0.14.0 ] : https://github.com/rust-embedded/svd2rust/compare/v0.13.1...v0.14.0
410
428
[ v0.13.1 ] : https://github.com/rust-embedded/svd2rust/compare/v0.13.0...v0.13.1
411
429
[ 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 = [
20
20
license = " MIT OR Apache-2.0"
21
21
name = " svd2rust"
22
22
repository = " https://github.com/japaric/svd2rust"
23
- version = " 0.14 .0"
23
+ version = " 0.15 .0"
24
24
25
25
[[bin ]]
26
26
doc = false
@@ -30,7 +30,6 @@ path = "src/main.rs"
30
30
[dependencies ]
31
31
cast = " 0.2.2"
32
32
clap = " 2.26.0"
33
- either = " 1.0.3"
34
33
env_logger = " ~0.5"
35
34
error-chain = " 0.11.0"
36
35
inflections = " 1.1.0"
You can’t perform that action at this time.
0 commit comments