Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion svd-encoder/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).

## [Unreleased]

## [v0.14.8] - 2026-04-15

- Pin `indexmap` to `2.11.4` to support our MSRV
- Bump MSRV to 1.84.0
- Set `resolver = "3"`, which implies `resolver.incompatible-rust-versions = "fallback"`
Expand Down Expand Up @@ -70,7 +72,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.12...HEAD
[Unreleased]: https://github.com/rust-embedded/svd/compare/svd-rs-v0.14.13...HEAD
[v0.14.8]: https://github.com/rust-embedded/svd/compare/svd-rs-v0.14.12...svd-rs-v0.14.13
[v0.14.7]: https://github.com/rust-embedded/svd/compare/svd-rs-v0.14.11...svd-rs-v0.14.12
[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
Expand Down
8 changes: 3 additions & 5 deletions svd-encoder/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,16 +8,14 @@ name = "svd-encoder"
repository = "https://github.com/rust-embedded/svd"
edition = "2021"
rust-version = "1.84.0"
version = "0.14.7"
version = "0.14.8"
readme = "README.md"

[dependencies]
convert_case = "0.6.0"
svd-rs = { version = "0.14.12", path = "../svd-rs" }
svd-rs = { version = "0.14.13", path = "../svd-rs" }
thiserror = "1.0.31"
# This is a transitive dep introduced by XML tree,
# but we need to pin to this version to support our current MSRV of 1.70.0
indexmap = "=2.11.4"
indexmap = "2.13.1"

[dependencies.xmltree]
version = "0.11.0"
Expand Down
5 changes: 4 additions & 1 deletion svd-parser/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).

## [Unreleased]

## [v0.14.10] - 2026-04-15

- Add `Target` enum to `Config` and make `vendorSystickConfig` only required for ARM.
- Bump MSRV to 1.84.0
- Set `resolver = "3"`, which implies `resolver.incompatible-rust-versions = "fallback"`
Expand Down Expand Up @@ -92,7 +94,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.12...HEAD
[Unreleased]: https://github.com/rust-embedded/svd/compare/svd-rs-v0.14.13...HEAD
[v0.14.10]: https://github.com/rust-embedded/svd/compare/svd-rs-v0.14.12...svd-rs-v0.14.13
[v0.14.9]: https://github.com/rust-embedded/svd/compare/svd-rs-v0.14.11...svd-rs-v0.14.12
[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
Expand Down
6 changes: 3 additions & 3 deletions svd-parser/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,23 +11,23 @@ name = "svd-parser"
repository = "https://github.com/rust-embedded/svd"
edition = "2021"
rust-version = "1.84.0"
version = "0.14.9"
version = "0.14.10"
readme = "README.md"

[features]
derive-from = ["svd-rs/derive-from"]
expand = ["derive-from"]

[dependencies]
svd-rs = { version = "0.14.12", path = "../svd-rs" }
svd-rs = { version = "0.14.13", path = "../svd-rs" }
roxmltree = "0.20"
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.10", path = "../svd-rs", features = ["serde"] }
svd-rs = { version = "0.14.13", path = "../svd-rs", features = ["serde"] }

[[example]]
name = "svd2json"
5 changes: 4 additions & 1 deletion svd-rs/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).

## [Unreleased]

## [v0.14.13] - 2026-04-15

- Bump MSRV to 1.84.0
- Set `resolver = "3"`, which implies `resolver.incompatible-rust-versions = "fallback"`
- Allow overriding `dimElementGroup` fields when deriving.
Expand Down Expand Up @@ -141,7 +143,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.12...HEAD
[Unreleased]: https://github.com/rust-embedded/svd/compare/svd-rs-v0.14.13...HEAD
[v0.14.13]: https://github.com/rust-embedded/svd/compare/svd-rs-v0.14.12...svd-rs-v0.14.13
[v0.14.12]: https://github.com/rust-embedded/svd/compare/svd-rs-v0.14.11...svd-rs-v0.14.12
[v0.14.11]: https://github.com/rust-embedded/svd/compare/svd-rs-v0.14.10...svd-rs-v0.14.11
[v0.14.10]: https://github.com/rust-embedded/svd/compare/svd-rs-v0.14.9...svd-rs-v0.14.10
Expand Down
2 changes: 1 addition & 1 deletion svd-rs/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ name = "svd-rs"
repository = "https://github.com/rust-embedded/svd"
edition = "2021"
rust-version = "1.84.0"
version = "0.14.12"
version = "0.14.13"
readme = "README.md"

[features]
Expand Down
Loading