File tree Expand file tree Collapse file tree 3 files changed +27
-1
lines changed Expand file tree Collapse file tree 3 files changed +27
-1
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,29 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
77
88## [ Unreleased]
99
10+ ## [ v0.12.1] - 2018-05-06
11+
12+ ### Added
13+
14+ - Code generation for ` <cluster> ` s
15+
16+ - SVD files can now be read from stdin
17+
18+ - RISCV support
19+
20+ ### Fixed
21+
22+ - Make the generated code work with recent nightlies by switching from the deprecated
23+ ` macro_reexport ` feature to the ` use_extern_macros ` feature, which is planned for stabilization.
24+
25+ - Relocation errors on MSP430
26+
27+ - Code generated for 1-bit enumerated fields
28+
29+ - Handle the case where ` dimIndex ` information is missing.
30+
31+ - Relocation errors (link errors) on MSP430
32+
1033## [ v0.12.0] - 2018-01-15
1134
1235### Changed
@@ -318,6 +341,7 @@ peripheral.register.write(|w| w.field().set());
318341- Initial version of the ` svd2rust ` tool
319342
320343[ Unreleased ] : https://github.com/japaric/svd2rust/compare/v0.12.0...HEAD
344+ [ v0.12.1 ] : https://github.com/japaric/svd2rust/compare/v0.12.0...v0.12.1
321345[ v0.12.0 ] : https://github.com/japaric/svd2rust/compare/v0.11.4...v0.12.0
322346[ v0.11.4 ] : https://github.com/japaric/svd2rust/compare/v0.11.3...v0.11.4
323347[ v0.11.3 ] : https://github.com/japaric/svd2rust/compare/v0.11.2...v0.11.3
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ keywords = [
1919license = " MIT OR Apache-2.0"
2020name = " svd2rust"
2121repository = " https://github.com/japaric/svd2rust"
22- version = " 0.12.0 "
22+ version = " 0.12.1 "
2323
2424[[bin ]]
2525doc = false
Original file line number Diff line number Diff line change 9797//! architecture.
9898//! - [`msp430-rt`](https://crates.io/crates/msp430-rt) v0.1.x if targeting the
9999//! MSP430 architecture.
100+ //! - [`riscv-rt`](https://crates.io/crates/riscv-rt) v0.2.x if targeting the
101+ //! RISCV architecture.
100102//!
101103//! # Peripheral API
102104//!
You can’t perform that action at this time.
0 commit comments