Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

0.13.1 release #196

Merged
merged 1 commit into from
Feb 12, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,6 @@ Newer releases see in [svd-rs/CHANGELOG.md](./svd-rs/CHANGELOG.md),
- Initial SVD parser
- A `parse` utility function to parse the contents of a SVD file (XML)

[Unreleased]: https://github.com/rust-embedded/svd/compare/v0.11.0...HEAD
[v0.11.0]: https://github.com/rust-embedded/svd/compare/v0.10.2...v0.11.0
[v0.10.2]: https://github.com/rust-embedded/svd/compare/v0.10.1...v0.10.2
[v0.10.1]: https://github.com/rust-embedded/svd/compare/v0.10.0...v0.10.1
Expand Down
9 changes: 6 additions & 3 deletions svd-encoder/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,11 @@ and this project adheres to [Semantic Versioning](http://semver.org/).

## Unreleased

## [v0.13.1] - 2022-02-12

- Encode "dimIndex" ranges

## [v0.13.0] - 2022-01-02
## [v0.13.0] - 2022-01-04

- Bump `svd-rs`

Expand All @@ -23,9 +25,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
## [v0.11.0] - 2021-10-02
- Splitted from `svd-parser`

Previous versions in common [changelog][../CHANGELOG.md].
Previous versions in common [changelog](../CHANGELOG.md).

[Unreleased]: https://github.com/rust-embedded/svd/compare/v0.13.0...HEAD
[Unreleased]: https://github.com/rust-embedded/svd/compare/svd-rs-v0.13.1...HEAD
[v0.13.1]: https://github.com/rust-embedded/svd/compare/svd-parser-v0.13.1...svd-rs-v0.13.1
[v0.13.0]: https://github.com/rust-embedded/svd/compare/v0.12.0...v0.13.0
[v0.12.0]: https://github.com/rust-embedded/svd/compare/v0.11.0...v0.12.0
[v0.11.0]: https://github.com/rust-embedded/svd/compare/v0.10.2...v0.11.0
2 changes: 1 addition & 1 deletion svd-encoder/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ license = "MIT OR Apache-2.0"
name = "svd-encoder"
repository = "https://github.com/rust-embedded/svd"
edition = "2018"
version = "0.13.0"
version = "0.13.1"
readme = "README.md"

[dependencies]
Expand Down
4 changes: 2 additions & 2 deletions svd-parser/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).

- Make `version`, `description`, `width` and `address_unit_bits` on `Device` optional again

## [v0.13.0] - 2022-01-02
## [v0.13.0] - 2022-01-04

- Add `svd2yaml` example
- Bump `svd-rs`
Expand All @@ -25,7 +25,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).

## [v0.11.0] - 2021-10-02

Previous versions in common [changelog][../CHANGELOG.md].
Previous versions in common [changelog](../CHANGELOG.md).

[Unreleased]: https://github.com/rust-embedded/svd/compare/svd-parser-v0.13.1...HEAD
[v0.13.1]: https://github.com/rust-embedded/svd/compare/v0.13.0...svd-parser-v0.13.1
Expand Down
7 changes: 5 additions & 2 deletions svd-rs/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).

## Unreleased

## [v0.13.1] - 2022-02-12

- add `indexes_as_range` for `DimElement`

## [v0.13.0] - 2022-01-04
Expand Down Expand Up @@ -60,9 +62,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
## [v0.11.0] - 2021-10-02
- Splitted from `svd-parser`

Previous versions in common [changelog][../CHANGELOG.md].
Previous versions in common [changelog](../CHANGELOG.md).

[Unreleased]: https://github.com/rust-embedded/svd/compare/v0.13.0...HEAD
[Unreleased]: https://github.com/rust-embedded/svd/compare/svd-rs-v0.13.1...HEAD
[v0.13.1]: https://github.com/rust-embedded/svd/compare/svd-parser-v0.13.1...svd-rs-v0.13.1
[v0.13.0]: https://github.com/rust-embedded/svd/compare/svd-rs-v0.12.1...v0.13.0
[v0.12.1]: https://github.com/rust-embedded/svd/compare/v0.12.0...svd-rs-v0.12.1
[v0.12.0]: https://github.com/rust-embedded/svd/compare/svd-rs-v0.11.2...v0.12.0
Expand Down
2 changes: 1 addition & 1 deletion svd-rs/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ license = "MIT OR Apache-2.0"
name = "svd-rs"
repository = "https://github.com/rust-embedded/svd"
edition = "2018"
version = "0.13.0"
version = "0.13.1"
readme = "README.md"

[features]
Expand Down