Skip to content

Commit f94bed9

Browse files
authored
Merge pull request #290 from rust-embedded/r-e0147
bump xmltree, release svd-encoder 0.14.7
2 parents ac586d0 + 1d76d67 commit f94bed9

File tree

12 files changed

+35
-20
lines changed

12 files changed

+35
-20
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,13 @@ jobs:
2323
continue-on-error: ${{ matrix.experimental || false }}
2424
strategy:
2525
matrix:
26-
rust: [ stable ]
26+
rust: [stable]
2727
include:
2828
# Test nightly but don't fail the build.
2929
- rust: nightly
3030
experimental: true
3131
# MSRV
32-
- rust: 1.65.0
32+
- rust: 1.70.0
3333
name: "MSRV"
3434
steps:
3535
- name: Checkout repository

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ It consists of:
1010

1111
## Minimum Supported Rust Version (MSRV)
1212

13-
This crate is guaranteed to compile on stable Rust 1.65.0 and up. It *might*
13+
This crate is guaranteed to compile on stable Rust 1.70.0 and up. It *might*
1414
compile with older versions but that may change in any new patch release.
1515

1616
## License

svd-encoder/CHANGELOG.md

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

88
## [Unreleased]
99

10-
## [v0.14.5] - 2025-02-08
10+
## [v0.14.7] - 2025-03-11
11+
12+
- Bump MSRV to 1.70.0
13+
- Bump `xmltree` to "0.11"
14+
15+
## [v0.14.6] - 2025-02-08
1116

1217
- Revert the `riscv` element, as well as the `unstable-riscv` feature.
1318

@@ -61,7 +66,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
6166

6267
Previous versions in common [changelog](../CHANGELOG.md).
6368

64-
[Unreleased]: https://github.com/rust-embedded/svd/compare/svd-rs-v0.14.10...HEAD
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
6571
[v0.14.6]: https://github.com/rust-embedded/svd/compare/svd-rs-v0.14.9...svd-rs-v0.14.10
6672
[v0.14.5]: https://github.com/rust-embedded/svd/compare/svd-rs-v0.14.8...svd-rs-v0.14.9
6773
[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: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,15 @@ 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"
11-
version = "0.14.6"
10+
rust-version = "1.70.0"
11+
version = "0.14.7"
1212
readme = "README.md"
1313

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

1919
[dependencies.xmltree]
20-
version = "0.10.3"
20+
version = "0.11.0"
2121
features = ["attribute-order"]

svd-encoder/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ This project is developed and maintained by the [Tools team][team].
1313

1414
## Minimum Supported Rust Version (MSRV)
1515

16-
This crate is guaranteed to compile on stable Rust 1.65.0 and up. It *might*
16+
This crate is guaranteed to compile on stable Rust 1.70.0 and up. It *might*
1717
compile with older versions but that may change in any new patch release.
1818

1919
## License

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-parser/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ This project is developed and maintained by the [Tools team][team].
1313

1414
## Minimum Supported Rust Version (MSRV)
1515

16-
This crate is guaranteed to compile on stable Rust 1.65.0 and up. It *might*
16+
This crate is guaranteed to compile on stable Rust 1.70.0 and up. It *might*
1717
compile with older versions but that may change in any new patch release.
1818

1919
## License

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]

svd-rs/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ This project is developed and maintained by the [Tools team][team].
1313

1414
## Minimum Supported Rust Version (MSRV)
1515

16-
This crate is guaranteed to compile on stable Rust 1.65.0 and up. It *might*
16+
This crate is guaranteed to compile on stable Rust 1.70.0 and up. It *might*
1717
compile with older versions but that may change in any new patch release.
1818

1919
## License

tests/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,5 @@ svd-rs = { path = "../svd-rs"}
1212
svd-parser = { path = "../svd-parser"}
1313
svd-encoder = { path = "../svd-encoder"}
1414
roxmltree = "0.20"
15-
xmltree = "0.10.3"
15+
xmltree = "0.11.0"
1616
anyhow = "1.0.45"

0 commit comments

Comments
 (0)