Skip to content

Commit cc42c11

Browse files
committed
v0.12.1
1 parent a755f8f commit cc42c11

File tree

3 files changed

+27
-1
lines changed

3 files changed

+27
-1
lines changed

CHANGELOG.md

+24
Original file line numberDiff line numberDiff 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

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ keywords = [
1919
license = "MIT OR Apache-2.0"
2020
name = "svd2rust"
2121
repository = "https://github.com/japaric/svd2rust"
22-
version = "0.12.0"
22+
version = "0.12.1"
2323

2424
[[bin]]
2525
doc = false

src/lib.rs

+2
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,8 @@
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
//!

0 commit comments

Comments
 (0)