diff --git a/svd-encoder/CHANGELOG.md b/svd-encoder/CHANGELOG.md index 7d1cb1e..f07d822 100644 --- a/svd-encoder/CHANGELOG.md +++ b/svd-encoder/CHANGELOG.md @@ -7,12 +7,14 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ## Unreleased +## [v0.14.5] - 2023-08-20 + - Adapt the `riscv` element to handle `riscv::Exception`. - Add `riscv` element for configuration parameters related to RISC-V targets. You must use the `unstable-riscv` feature to enable this exeperimental element. - Bump MSRV to 1.65.0 -## [v0.14.3] - 2023-11-15 +## [v0.14.4] - 2023-11-15 - Bump `svd-rs` to 0.14.4 @@ -55,7 +57,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.4...HEAD +[Unreleased]: https://github.com/rust-embedded/svd/compare/svd-rs-v0.14.5...HEAD +[v0.14.5]: https://github.com/rust-embedded/svd/compare/svd-rs-v0.14.8...svd-rs-v0.14.9 [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 diff --git a/svd-encoder/Cargo.toml b/svd-encoder/Cargo.toml index cb584e5..7d07e49 100644 --- a/svd-encoder/Cargo.toml +++ b/svd-encoder/Cargo.toml @@ -8,7 +8,7 @@ name = "svd-encoder" repository = "https://github.com/rust-embedded/svd" edition = "2021" rust-version = "1.65.0" -version = "0.14.4" +version = "0.14.5" readme = "README.md" [features] @@ -16,7 +16,7 @@ unstable-riscv = ["svd-rs/unstable-riscv"] [dependencies] convert_case = "0.6.0" -svd-rs = { version = "0.14.7", path = "../svd-rs" } +svd-rs = { version = "0.14.9", path = "../svd-rs" } thiserror = "1.0.31" [dependencies.xmltree] diff --git a/svd-parser/CHANGELOG.md b/svd-parser/CHANGELOG.md index 61094d4..5d8e75f 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.6] - 2024-08-20 + - Adapt the `riscv` element to handle `riscv::Exception`. - Add `riscv` element for configuration parameters related to RISC-V targets. You must use the `unstable-riscv` feature to enable this exeperimental element. @@ -74,7 +76,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.7...HEAD +[Unreleased]: https://github.com/rust-embedded/svd/compare/svd-rs-v0.14.6...HEAD +[v0.14.6]: https://github.com/rust-embedded/svd/compare/svd-rs-v0.14.8...svd-rs-v0.14.9 [v0.14.5]: https://github.com/rust-embedded/svd/compare/svd-parser-v0.14.4...svd-rs-v0.14.7 [v0.14.4]: https://github.com/rust-embedded/svd/compare/svd-parser-v0.14.3...svd-parser-v0.14.4 [v0.14.3]: https://github.com/rust-embedded/svd/compare/svd-parser-v0.14.2...svd-parser-v0.14.3 diff --git a/svd-parser/Cargo.toml b/svd-parser/Cargo.toml index 32a6041..8cbe12c 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.65.0" -version = "0.14.5" +version = "0.14.6" readme = "README.md" [features] @@ -28,7 +28,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.7", path = "../svd-rs", features = ["serde"] } +svd-rs = { version = "0.14.9", path = "../svd-rs", features = ["serde"] } [[example]] name = "svd2json" diff --git a/svd-rs/CHANGELOG.md b/svd-rs/CHANGELOG.md index bcf7d22..ad18188 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.14.9] - 2024-08-20 + - Add `riscv::Exception` for custom exception source enumerations. - Add `riscv` element for configuration parameters related to RISC-V targets. You must use the `unstable-riscv` feature to enable this exeperimental element. @@ -120,7 +122,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.8...HEAD +[Unreleased]: https://github.com/rust-embedded/svd/compare/svd-rs-v0.14.9...HEAD +[v0.14.9]: https://github.com/rust-embedded/svd/compare/svd-rs-v0.14.8...svd-rs-v0.14.9 [v0.14.8]: https://github.com/rust-embedded/svd/compare/svd-rs-v0.14.7...svd-rs-v0.14.8 [v0.14.7]: https://github.com/rust-embedded/svd/compare/svd-rs-v0.14.6...svd-rs-v0.14.7 [v0.14.6]: https://github.com/rust-embedded/svd/compare/svd-rs-v0.14.5...svd-rs-v0.14.6 diff --git a/svd-rs/Cargo.toml b/svd-rs/Cargo.toml index 3f8488b..9c0248a 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.65.0" -version = "0.14.8" +version = "0.14.9" readme = "README.md" [features]