From 05778d6739f6e9ad96cb8db5450fe1d779a988d1 Mon Sep 17 00:00:00 2001 From: Andrey Zgarbul Date: Sat, 12 Feb 2022 20:52:22 +0300 Subject: [PATCH] 0.13.1 release --- CHANGELOG.md | 1 - svd-encoder/CHANGELOG.md | 9 ++++++--- svd-encoder/Cargo.toml | 2 +- svd-parser/CHANGELOG.md | 4 ++-- svd-rs/CHANGELOG.md | 7 +++++-- svd-rs/Cargo.toml | 2 +- 6 files changed, 15 insertions(+), 10 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5f27813c..9c25dcbd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/svd-encoder/CHANGELOG.md b/svd-encoder/CHANGELOG.md index f15b499e..88c4521d 100644 --- a/svd-encoder/CHANGELOG.md +++ b/svd-encoder/CHANGELOG.md @@ -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` @@ -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 diff --git a/svd-encoder/Cargo.toml b/svd-encoder/Cargo.toml index 2fe7703a..033b5f77 100644 --- a/svd-encoder/Cargo.toml +++ b/svd-encoder/Cargo.toml @@ -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] diff --git a/svd-parser/CHANGELOG.md b/svd-parser/CHANGELOG.md index efe1f31d..59566cf1 100644 --- a/svd-parser/CHANGELOG.md +++ b/svd-parser/CHANGELOG.md @@ -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` @@ -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 diff --git a/svd-rs/CHANGELOG.md b/svd-rs/CHANGELOG.md index 7dfedd51..a24cba46 100644 --- a/svd-rs/CHANGELOG.md +++ b/svd-rs/CHANGELOG.md @@ -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 @@ -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 diff --git a/svd-rs/Cargo.toml b/svd-rs/Cargo.toml index 5592db99..c1350c83 100644 --- a/svd-rs/Cargo.toml +++ b/svd-rs/Cargo.toml @@ -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]