Skip to content

Commit 45f1ed4

Browse files
committed
v0.9.0
1 parent f09b542 commit 45f1ed4

File tree

3 files changed

+18
-3
lines changed

3 files changed

+18
-3
lines changed

CHANGELOG.md

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,20 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
77

88
## [Unreleased]
99

10+
## [v0.9.0] - 2017-06-05
11+
12+
### Changed
13+
14+
- [breaking-change] the types of peripherals, register and bitfields are now
15+
normalized to uppercase, instead of CamelCase. It was not possible to use
16+
CamelCase without running into problems like `A_22_5` and `A_2_25` mapping to
17+
the same identifier `A225`.
18+
19+
### Fixed
20+
21+
- Code generation when the size of register was declared as being 1 bit by the
22+
SVD file.
23+
1024
## [v0.8.1] - 2017-05-30
1125

1226
### Changed
@@ -212,7 +226,8 @@ peripheral.register.write(|w| w.field().set());
212226

213227
- Initial version of the `svd2rust` tool
214228

215-
[Unreleased]: https://github.com/japaric/svd2rust/compare/v0.8.1...HEAD
229+
[Unreleased]: https://github.com/japaric/svd2rust/compare/v0.9.0...HEAD
230+
[v0.9.0]: https://github.com/japaric/svd2rust/compare/v0.8.1...v0.9.0
216231
[v0.8.1]: https://github.com/japaric/svd2rust/compare/v0.8.0...v0.8.1
217232
[v0.8.0]: https://github.com/japaric/svd2rust/compare/v0.7.2...v0.8.0
218233
[v0.7.2]: https://github.com/japaric/svd2rust/compare/v0.7.1...v0.7.2

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ keywords = ["arm", "cortex-m", "register", "map", "generator"]
88
license = "MIT OR Apache-2.0"
99
name = "svd2rust"
1010
repository = "https://github.com/japaric/svd2rust"
11-
version = "0.8.1"
11+
version = "0.9.0"
1212

1313
[dependencies]
1414
cast = "0.2.0"

0 commit comments

Comments
 (0)