Skip to content

Commit f1a0a4a

Browse files
committed
bump MSRV to 1.70, release svd-rs-0.14.12
1 parent 063c859 commit f1a0a4a

File tree

6 files changed

+22
-12
lines changed

6 files changed

+22
-12
lines changed

svd-encoder/CHANGELOG.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,9 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
77

88
## [Unreleased]
99

10-
## [v0.14.7] - 2025-02-28
10+
## [v0.14.7] - 2025-03-11
1111

12+
- Bump MSRV to 1.70.0
1213
- Bump `xmltree` to "0.11"
1314

1415
## [v0.14.6] - 2025-02-08
@@ -65,8 +66,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
6566

6667
Previous versions in common [changelog](../CHANGELOG.md).
6768

68-
[Unreleased]: https://github.com/rust-embedded/svd/compare/svd-encoder-v0.14.7...HEAD
69-
[v0.14.7]: https://github.com/rust-embedded/svd/compare/svd-rs-v0.14.11...svd-encoder-v0.14.7
69+
[Unreleased]: https://github.com/rust-embedded/svd/compare/svd-rs-v0.14.12...HEAD
70+
[v0.14.7]: https://github.com/rust-embedded/svd/compare/svd-rs-v0.14.11...svd-rs-v0.14.12
7071
[v0.14.6]: https://github.com/rust-embedded/svd/compare/svd-rs-v0.14.9...svd-rs-v0.14.10
7172
[v0.14.5]: https://github.com/rust-embedded/svd/compare/svd-rs-v0.14.8...svd-rs-v0.14.9
7273
[v0.14.4]: https://github.com/rust-embedded/svd/compare/svd-rs-v0.14.3...svd-rs-v0.14.4

svd-encoder/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,13 @@ license = "MIT OR Apache-2.0"
77
name = "svd-encoder"
88
repository = "https://github.com/rust-embedded/svd"
99
edition = "2021"
10-
rust-version = "1.65.0"
10+
rust-version = "1.70.0"
1111
version = "0.14.7"
1212
readme = "README.md"
1313

1414
[dependencies]
1515
convert_case = "0.6.0"
16-
svd-rs = { version = "0.14.11", path = "../svd-rs" }
16+
svd-rs = { version = "0.14.12", path = "../svd-rs" }
1717
thiserror = "1.0.31"
1818

1919
[dependencies.xmltree]

svd-parser/CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
77

88
## [Unreleased]
99

10+
## [v0.14.9] - 2025-03-11
11+
12+
- Bump MSRV to 1.70.0
13+
1014
## [v0.14.8] - 2025-02-08
1115

1216
- Revert the `riscv` element, as well as the `unstable-riscv` feature.
@@ -84,7 +88,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
8488

8589
Previous versions in common [changelog](../CHANGELOG.md).
8690

87-
[Unreleased]: https://github.com/rust-embedded/svd/compare/svd-rs-v0.14.10...HEAD
91+
[Unreleased]: https://github.com/rust-embedded/svd/compare/svd-rs-v0.14.12...HEAD
92+
[v0.14.9]: https://github.com/rust-embedded/svd/compare/svd-rs-v0.14.11...svd-rs-v0.14.12
8893
[v0.14.8]: https://github.com/rust-embedded/svd/compare/svd-rs-v0.14.9...svd-rs-v0.14.10
8994
[v0.14.6]: https://github.com/rust-embedded/svd/compare/svd-rs-v0.14.8...svd-rs-v0.14.9
9095
[v0.14.5]: https://github.com/rust-embedded/svd/compare/svd-parser-v0.14.4...svd-rs-v0.14.7

svd-parser/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,16 +10,16 @@ license = "MIT OR Apache-2.0"
1010
name = "svd-parser"
1111
repository = "https://github.com/rust-embedded/svd"
1212
edition = "2021"
13-
rust-version = "1.65.0"
14-
version = "0.14.8"
13+
rust-version = "1.70.0"
14+
version = "0.14.9"
1515
readme = "README.md"
1616

1717
[features]
1818
derive-from = ["svd-rs/derive-from"]
1919
expand = ["derive-from"]
2020

2121
[dependencies]
22-
svd-rs = { version = "0.14.9", path = "../svd-rs" }
22+
svd-rs = { version = "0.14.12", path = "../svd-rs" }
2323
roxmltree = "0.20"
2424
anyhow = "1.0.58"
2525
thiserror = "1.0.31"

svd-rs/CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
77

88
## [Unreleased]
99

10+
## [v0.14.12] - 2025-03-11
11+
12+
- Bump MSRV to 1.70.0
1013
- Add missing entry for `address_block` in `DeriveFrom` impl
1114

1215
## [v0.14.11] - 2025-02-10
@@ -134,7 +137,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
134137

135138
Previous versions in common [changelog](../CHANGELOG.md).
136139

137-
[Unreleased]: https://github.com/rust-embedded/svd/compare/svd-rs-v0.14.11...HEAD
140+
[Unreleased]: https://github.com/rust-embedded/svd/compare/svd-rs-v0.14.12...HEAD
141+
[v0.14.12]: https://github.com/rust-embedded/svd/compare/svd-rs-v0.14.11...svd-rs-v0.14.12
138142
[v0.14.11]: https://github.com/rust-embedded/svd/compare/svd-rs-v0.14.10...svd-rs-v0.14.11
139143
[v0.14.10]: https://github.com/rust-embedded/svd/compare/svd-rs-v0.14.9...svd-rs-v0.14.10
140144
[v0.14.9]: https://github.com/rust-embedded/svd/compare/svd-rs-v0.14.8...svd-rs-v0.14.9

svd-rs/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ license = "MIT OR Apache-2.0"
77
name = "svd-rs"
88
repository = "https://github.com/rust-embedded/svd"
99
edition = "2021"
10-
rust-version = "1.65.0"
11-
version = "0.14.11"
10+
rust-version = "1.70.0"
11+
version = "0.14.12"
1212
readme = "README.md"
1313

1414
[features]

0 commit comments

Comments
 (0)