From e78ee752874f4214273759b43d46a7549157243a Mon Sep 17 00:00:00 2001 From: Andrey Zgarbul Date: Wed, 3 Jan 2024 08:41:24 +0300 Subject: [PATCH] release 0.14.7 --- svd-parser/CHANGELOG.md | 7 ++++++- svd-parser/Cargo.toml | 8 ++++---- svd-rs/CHANGELOG.md | 5 ++++- svd-rs/Cargo.toml | 4 ++-- tests/Cargo.toml | 2 +- 5 files changed, 17 insertions(+), 9 deletions(-) diff --git a/svd-parser/CHANGELOG.md b/svd-parser/CHANGELOG.md index c2606806..05a972ff 100644 --- a/svd-parser/CHANGELOG.md +++ b/svd-parser/CHANGELOG.md @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ## Unreleased +## [v0.14.5] - 2024-01-03 + +- Bump svd-rs to 0.14.7, roxmltree to 0.19 + ## [v0.14.4] - 2023-11-15 - Bump svd-rs dependency to 0.14.4 or higher. @@ -63,7 +67,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.4...HEAD +[Unreleased]: https://github.com/rust-embedded/svd/compare/svd-rs-v0.14.7...HEAD +[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 [v0.14.2]: https://github.com/rust-embedded/svd/compare/svd-rs-v0.14.2...svd-parser-v0.14.2 diff --git a/svd-parser/Cargo.toml b/svd-parser/Cargo.toml index 87137d35..e3be4493 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.4" +version = "0.14.5" readme = "README.md" [features] @@ -19,15 +19,15 @@ derive-from = ["svd-rs/derive-from"] expand = ["derive-from"] [dependencies] -svd-rs = { version = "0.14.4", path = "../svd-rs" } -roxmltree = "0.18" +svd-rs = { version = "0.14.7", path = "../svd-rs" } +roxmltree = "0.19" anyhow = "1.0.58" thiserror = "1.0.31" [dev-dependencies] serde_json = { version = "1.0", features = ["preserve_order"] } serde_yaml = "0.8.26" -svd-rs = { version = "0.14.4", path = "../svd-rs", features = ["serde"] } +svd-rs = { version = "0.14.7", path = "../svd-rs", features = ["serde"] } [[example]] name = "svd2json" diff --git a/svd-rs/CHANGELOG.md b/svd-rs/CHANGELOG.md index 3b915017..3b85bd61 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.7] - 2024-01-03 + - use close range in `EnumeratedValue` error message ## [v0.14.6] - 2023-11-29 @@ -105,7 +107,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.7...HEAD +[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 [v0.14.5]: https://github.com/rust-embedded/svd/compare/svd-rs-v0.14.4...svd-rs-v0.14.5 [v0.14.4]: https://github.com/rust-embedded/svd/compare/svd-rs-v0.14.3...svd-rs-v0.14.4 diff --git a/svd-rs/Cargo.toml b/svd-rs/Cargo.toml index 72571807..ea639508 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.6" +version = "0.14.7" readme = "README.md" [features] @@ -23,7 +23,7 @@ thiserror = "1.0.31" version = "1" [dependencies.once_cell] -version = "1.17.1" +version = "1.19.0" [dependencies.serde] version = "1.0" diff --git a/tests/Cargo.toml b/tests/Cargo.toml index bafee60b..9ceb2a9a 100644 --- a/tests/Cargo.toml +++ b/tests/Cargo.toml @@ -11,6 +11,6 @@ publish = false svd-rs = { path = "../svd-rs"} svd-parser = { path = "../svd-parser"} svd-encoder = { path = "../svd-encoder"} -roxmltree = "0.18" +roxmltree = "0.19" xmltree = "0.10.3" anyhow = "1.0.45"