Skip to content

Commit

Permalink
v0.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
japaric committed Jun 6, 2017
1 parent f09b542 commit 45f1ed4
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 3 deletions.
17 changes: 16 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,20 @@ and this project adheres to [Semantic Versioning](http://semver.org/).

## [Unreleased]

## [v0.9.0] - 2017-06-05

### Changed

- [breaking-change] the types of peripherals, register and bitfields are now
normalized to uppercase, instead of CamelCase. It was not possible to use
CamelCase without running into problems like `A_22_5` and `A_2_25` mapping to
the same identifier `A225`.

### Fixed

- Code generation when the size of register was declared as being 1 bit by the
SVD file.

## [v0.8.1] - 2017-05-30

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

- Initial version of the `svd2rust` tool

[Unreleased]: https://github.com/japaric/svd2rust/compare/v0.8.1...HEAD
[Unreleased]: https://github.com/japaric/svd2rust/compare/v0.9.0...HEAD
[v0.9.0]: https://github.com/japaric/svd2rust/compare/v0.8.1...v0.9.0
[v0.8.1]: https://github.com/japaric/svd2rust/compare/v0.8.0...v0.8.1
[v0.8.0]: https://github.com/japaric/svd2rust/compare/v0.7.2...v0.8.0
[v0.7.2]: https://github.com/japaric/svd2rust/compare/v0.7.1...v0.7.2
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ keywords = ["arm", "cortex-m", "register", "map", "generator"]
license = "MIT OR Apache-2.0"
name = "svd2rust"
repository = "https://github.com/japaric/svd2rust"
version = "0.8.1"
version = "0.9.0"

[dependencies]
cast = "0.2.0"
Expand Down

0 comments on commit 45f1ed4

Please sign in to comment.