Skip to content

Commit 93d9706

Browse files
committed
v0.10.0
1 parent 718645c commit 93d9706

File tree

2 files changed

+14
-2
lines changed

2 files changed

+14
-2
lines changed

CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [v0.10.0] - 2017-06-11
11+
12+
### Changed
13+
14+
- [breaking-change] the read / write methods on single bits have been renamed
15+
from `set`, `clear`, `is_set` and `is_clear` to `set_bit`, `clear_bit`,
16+
`bit_is_set` and `bit_is_clear` respectively. This fixes several collision
17+
cases where a SVD file named an enumeratedValue BIT (which turns out to be not
18+
that uncommon!)
19+
1020
## [v0.9.1] - 2017-06-05
1121

1222
### Fixed
@@ -233,7 +243,9 @@ peripheral.register.write(|w| w.field().set());
233243

234244
- Initial version of the `svd2rust` tool
235245

236-
[Unreleased]: https://github.com/japaric/svd2rust/compare/v0.9.0...HEAD
246+
[Unreleased]: https://github.com/japaric/svd2rust/compare/v0.10.0...HEAD
247+
[v0.10.0]: https://github.com/japaric/svd2rust/compare/v0.9.1...v0.10.0
248+
[v0.9.1]: https://github.com/japaric/svd2rust/compare/v0.9.0...v0.9.1
237249
[v0.9.0]: https://github.com/japaric/svd2rust/compare/v0.8.1...v0.9.0
238250
[v0.8.1]: https://github.com/japaric/svd2rust/compare/v0.8.0...v0.8.1
239251
[v0.8.0]: https://github.com/japaric/svd2rust/compare/v0.7.2...v0.8.0

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.9.1"
11+
version = "0.10.0"
1212

1313
[dependencies]
1414
cast = "0.2.0"

0 commit comments

Comments
 (0)