diff --git a/svd-encoder/CHANGELOG.md b/svd-encoder/CHANGELOG.md index c1046269..80305429 100644 --- a/svd-encoder/CHANGELOG.md +++ b/svd-encoder/CHANGELOG.md @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ## Unreleased +## [v0.14.3] - 2023-11-15 + +- Bump `svd-rs` to 0.14.4 + ## [v0.14.3] - 2023-04-04 - Add `Sorting` options to `Config` @@ -46,7 +50,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/). Previous versions in common [changelog](../CHANGELOG.md). -[Unreleased]: https://github.com/rust-embedded/svd/compare/svd-rs-v0.14.2...HEAD +[Unreleased]: https://github.com/rust-embedded/svd/compare/svd-rs-v0.14.4...HEAD +[v0.14.4]: https://github.com/rust-embedded/svd/compare/svd-rs-v0.14.3...svd-rs-v0.14.4 [v0.14.3]: https://github.com/rust-embedded/svd/compare/svd-encoder-v0.14.2..svd-rs-v0.14.2 [v0.14.2]: https://github.com/rust-embedded/svd/compare/svd-encoder-v0.14.1..svd-encoder-v0.14.2 [v0.14.1]: https://github.com/rust-embedded/svd/compare/v0.14.0..svd-encoder-v0.14.1 diff --git a/svd-encoder/Cargo.toml b/svd-encoder/Cargo.toml index 6c59e244..35f2bb19 100644 --- a/svd-encoder/Cargo.toml +++ b/svd-encoder/Cargo.toml @@ -8,12 +8,12 @@ name = "svd-encoder" repository = "https://github.com/rust-embedded/svd" edition = "2021" rust-version = "1.58.0" -version = "0.14.3" +version = "0.14.4" readme = "README.md" [dependencies] convert_case = "0.6.0" -svd-rs = { version = "0.14.2", path = "../svd-rs" } +svd-rs = { version = "0.14.4", path = "../svd-rs" } thiserror = "1.0.31" [dependencies.xmltree] diff --git a/svd-parser/CHANGELOG.md b/svd-parser/CHANGELOG.md index 6275cf19..47ab6111 100644 --- a/svd-parser/CHANGELOG.md +++ b/svd-parser/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ## Unreleased +## [v0.14.3] - 2023-11-15 + - Correctly place `expand_properties` under `expand` feature ## [v0.14.2] - 2023-09-17 @@ -57,7 +59,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/). Previous versions in common [changelog](../CHANGELOG.md). -[Unreleased]: https://github.com/rust-embedded/svd/compare/svd-parser-v0.14.2...HEAD +[Unreleased]: https://github.com/rust-embedded/svd/compare/svd-rs-v0.14.4...HEAD +[v0.14.3]: https://github.com/rust-embedded/svd/compare/svd-rs-v0.14.3...svd-rs-v0.14.4 [v0.14.2]: https://github.com/rust-embedded/svd/compare/svd-rs-v0.14.2...svd-parser-v0.14.2 [v0.14.1]: https://github.com/rust-embedded/svd/compare/v0.14.0...svd-rs-v0.14.1 [v0.14.0]: https://github.com/rust-embedded/svd/compare/svd-parser-v0.13.4...v0.14.0 diff --git a/svd-parser/Cargo.toml b/svd-parser/Cargo.toml index dce25e49..1f963b7b 100644 --- a/svd-parser/Cargo.toml +++ b/svd-parser/Cargo.toml @@ -11,7 +11,7 @@ name = "svd-parser" repository = "https://github.com/rust-embedded/svd" edition = "2021" rust-version = "1.58.0" -version = "0.14.2" +version = "0.14.3" readme = "README.md" [features] @@ -27,7 +27,7 @@ thiserror = "1.0.31" [dev-dependencies] serde_json = { version = "1.0", features = ["preserve_order"] } serde_yaml = "0.8.26" -svd-rs = { version = "0.14.3", path = "../svd-rs", features = ["serde"] } +svd-rs = { version = "0.14.4", path = "../svd-rs", features = ["serde"] } [[example]] name = "svd2json" diff --git a/svd-rs/CHANGELOG.md b/svd-rs/CHANGELOG.md index f71e28a0..7ecb9a33 100644 --- a/svd-rs/CHANGELOG.md +++ b/svd-rs/CHANGELOG.md @@ -7,17 +7,19 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ## Unreleased +## [v0.14.4] - 2023-11-15 + - Add `expand` functions for arrays - Fix `indexes_as_range` -## [v0.14.3] - 2023-04-04 +## [v0.14.3] - 2023-10-24 - Bump MSRV to 1.58.0 - `array::names` returns custom names if specified - add `Description` trait and `array::descriptions` - add write constraint range check -## [v0.14.2] - 2023-04-04 +## [v0.14.2] - 2023-05-10 - Add support of `a-Z` for `dimIndex` - Add `name`, `description`, `address_offset` for `RegisterCluster` @@ -91,7 +93,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/). Previous versions in common [changelog](../CHANGELOG.md). -[Unreleased]: https://github.com/rust-embedded/svd/compare/svd-rs-v0.14.3...HEAD +[Unreleased]: https://github.com/rust-embedded/svd/compare/svd-rs-v0.14.4...HEAD +[v0.14.4]: https://github.com/rust-embedded/svd/compare/svd-rs-v0.14.3...svd-rs-v0.14.4 [v0.14.3]: https://github.com/rust-embedded/svd/compare/svd-parser-v0.14.2...svd-rs-v0.14.3 [v0.14.2]: https://github.com/rust-embedded/svd/compare/svd-encoder-v0.14.2...svd-rs-v0.14.2 [v0.14.1]: https://github.com/rust-embedded/svd/compare/v0.14.0...svd-rs-v0.14.1 diff --git a/svd-rs/Cargo.toml b/svd-rs/Cargo.toml index d5e5042f..e2bafb16 100644 --- a/svd-rs/Cargo.toml +++ b/svd-rs/Cargo.toml @@ -10,7 +10,7 @@ name = "svd-rs" repository = "https://github.com/rust-embedded/svd" edition = "2021" rust-version = "1.58.0" -version = "0.14.3" +version = "0.14.4" readme = "README.md" [features]