Skip to content

Commit fab4c98

Browse files
committed
v0.7.1
1 parent c758eb7 commit fab4c98

File tree

2 files changed

+23
-3
lines changed

2 files changed

+23
-3
lines changed

CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [v0.7.1] - 2017-05-07
11+
12+
### Added
13+
14+
- A `.reset()` method, as a shorthand for "write the reset value to this
15+
register".
16+
17+
### Changed
18+
19+
- Make writing raw bits to a register safe if the SVD indicates so through the
20+
<WriteConstraint> element.
21+
22+
- Do not reject peripherals without registers.
23+
24+
### Fixed
25+
26+
- Code generation when the SVD file contains no information about interrupts.
27+
1028
## [v0.7.0] - 2017-04-25
1129

1230
### Changed
@@ -140,7 +158,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
140158

141159
- Initial version of the `svd2rust` tool
142160

143-
[Unreleased]: https://github.com/japaric/svd2rust/compare/v0.7.0...HEAD
161+
[Unreleased]: https://github.com/japaric/svd2rust/compare/v0.7.1...HEAD
162+
[v0.7.1]: https://github.com/japaric/svd2rust/compare/v0.7.0...v0.7.1
144163
[v0.7.0]: https://github.com/japaric/svd2rust/compare/v0.6.2...v0.7.0
145164
[v0.6.2]: https://github.com/japaric/svd2rust/compare/v0.6.1...v0.6.2
146165
[v0.6.1]: https://github.com/japaric/svd2rust/compare/v0.6.0...v0.6.1

Cargo.toml

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
11
[package]
2-
authors = ["Jorge Aparicio <[email protected]>"]
2+
authors = ["Jorge Aparicio <[email protected]>"]
33
build = "build.rs"
4+
categories = ["command-line-utilities", "embedded", "no-std"]
45
description = "Generate Rust register maps (`struct`s) from SVD files"
56
documentation = "https://github.com/japaric/svd2rust#svd2rust"
67
keywords = ["arm", "cortex-m", "register", "map", "generator"]
78
license = "MIT OR Apache-2.0"
89
name = "svd2rust"
910
repository = "https://github.com/japaric/svd2rust"
10-
version = "0.7.0"
11+
version = "0.7.1"
1112

1213
[dependencies]
1314
cast = "0.2.0"

0 commit comments

Comments
 (0)