From dc3223704123efde666bbcde6a07f9391c9804b6 Mon Sep 17 00:00:00 2001 From: Andrey Zgarbul Date: Sat, 8 Feb 2025 09:06:23 +0300 Subject: [PATCH] release 0.14.10 --- svd-encoder/CHANGELOG.md | 9 ++++++--- svd-encoder/Cargo.toml | 4 ++-- svd-parser/CHANGELOG.md | 7 +++++-- svd-parser/Cargo.toml | 4 ++-- svd-rs/CHANGELOG.md | 7 +++++-- svd-rs/Cargo.toml | 6 ++---- 6 files changed, 22 insertions(+), 15 deletions(-) diff --git a/svd-encoder/CHANGELOG.md b/svd-encoder/CHANGELOG.md index 02e08706..5372ac50 100644 --- a/svd-encoder/CHANGELOG.md +++ b/svd-encoder/CHANGELOG.md @@ -5,11 +5,13 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/). -## Unreleased +## [Unreleased] + +## [v0.14.5] - 2025-02-08 - Revert the `riscv` element, as well as the `unstable-riscv` feature. -## [v0.14.5] - 2023-08-20 +## [v0.14.5] - 2024-08-20 - Adapt the `riscv` element to handle `riscv::Exception`. - Add `riscv` element for configuration parameters related to RISC-V targets. @@ -59,7 +61,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.5...HEAD +[Unreleased]: https://github.com/rust-embedded/svd/compare/svd-rs-v0.14.10...HEAD +[v0.14.6]: https://github.com/rust-embedded/svd/compare/svd-rs-v0.14.9...svd-rs-v0.14.10 [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 diff --git a/svd-encoder/Cargo.toml b/svd-encoder/Cargo.toml index 52486ab8..d3ca498d 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.65.0" -version = "0.14.5" +version = "0.14.6" readme = "README.md" [dependencies] convert_case = "0.6.0" -svd-rs = { version = "0.14.9", path = "../svd-rs" } +svd-rs = { version = "0.14.10", path = "../svd-rs" } thiserror = "1.0.31" [dependencies.xmltree] diff --git a/svd-parser/CHANGELOG.md b/svd-parser/CHANGELOG.md index 572d79cd..8a4f8bdd 100644 --- a/svd-parser/CHANGELOG.md +++ b/svd-parser/CHANGELOG.md @@ -5,7 +5,9 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/). -## Unreleased +## [Unreleased] + +## [v0.14.8] - 2025-02-08 - Revert the `riscv` element, as well as the `unstable-riscv` feature. @@ -82,7 +84,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.6...HEAD +[Unreleased]: https://github.com/rust-embedded/svd/compare/svd-rs-v0.14.10...HEAD +[v0.14.8]: https://github.com/rust-embedded/svd/compare/svd-rs-v0.14.9...svd-rs-v0.14.10 [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 diff --git a/svd-parser/Cargo.toml b/svd-parser/Cargo.toml index 3531c188..f97e769d 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.7" +version = "0.14.8" 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.9", path = "../svd-rs", features = ["serde"] } +svd-rs = { version = "0.14.10", path = "../svd-rs", features = ["serde"] } [[example]] name = "svd2json" diff --git a/svd-rs/CHANGELOG.md b/svd-rs/CHANGELOG.md index 274842da..5a690ffc 100644 --- a/svd-rs/CHANGELOG.md +++ b/svd-rs/CHANGELOG.md @@ -5,7 +5,9 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/). -## Unreleased +## [Unreleased] + +## [v0.14.10] - 2025-02-08 - Do not derive `DimElement` - Revert the `riscv` elements, as well as the `unstable-riscv` feature. @@ -126,7 +128,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.9...HEAD +[Unreleased]: https://github.com/rust-embedded/svd/compare/svd-rs-v0.14.10...HEAD +[v0.14.10]: https://github.com/rust-embedded/svd/compare/svd-rs-v0.14.9...svd-rs-v0.14.10 [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 diff --git a/svd-rs/Cargo.toml b/svd-rs/Cargo.toml index 88b2362d..7d936844 100644 --- a/svd-rs/Cargo.toml +++ b/svd-rs/Cargo.toml @@ -1,7 +1,5 @@ [package] -authors = [ - "The Tools Team ", -] +authors = ["The Tools Team "] description = "A CMSIS-SVD base structures" documentation = "https://docs.rs/svd-rs" keywords = ["CMSIS", "SVD"] @@ -10,7 +8,7 @@ name = "svd-rs" repository = "https://github.com/rust-embedded/svd" edition = "2021" rust-version = "1.65.0" -version = "0.14.9" +version = "0.14.10" readme = "README.md" [features]