Skip to content

Commit 2e7bf87

Browse files
bors[bot]burrbull
andcommitted
Merge #336
336: v0.15 r=therealprof a=burrbull r? @therealprof Co-authored-by: Andrey Zgarbul <[email protected]>
2 parents b21bc3c + acc8788 commit 2e7bf87

File tree

2 files changed

+20
-3
lines changed

2 files changed

+20
-3
lines changed

CHANGELOG.md

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff 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

Cargo.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ keywords = [
2020
license = "MIT OR Apache-2.0"
2121
name = "svd2rust"
2222
repository = "https://github.com/japaric/svd2rust"
23-
version = "0.14.0"
23+
version = "0.15.0"
2424

2525
[[bin]]
2626
doc = false
@@ -30,7 +30,6 @@ path = "src/main.rs"
3030
[dependencies]
3131
cast = "0.2.2"
3232
clap = "2.26.0"
33-
either = "1.0.3"
3433
env_logger = "~0.5"
3534
error-chain = "0.11.0"
3635
inflections = "1.1.0"

0 commit comments

Comments
 (0)