File tree 12 files changed +35
-20
lines changed
12 files changed +35
-20
lines changed Original file line number Diff line number Diff line change @@ -23,13 +23,13 @@ jobs:
23
23
continue-on-error : ${{ matrix.experimental || false }}
24
24
strategy :
25
25
matrix :
26
- rust : [ stable ]
26
+ rust : [stable]
27
27
include :
28
28
# Test nightly but don't fail the build.
29
29
- rust : nightly
30
30
experimental : true
31
31
# MSRV
32
- - rust : 1.65 .0
32
+ - rust : 1.70 .0
33
33
name : " MSRV"
34
34
steps :
35
35
- name : Checkout repository
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ It consists of:
10
10
11
11
## Minimum Supported Rust Version (MSRV)
12
12
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*
14
14
compile with older versions but that may change in any new patch release.
15
15
16
16
## License
Original file line number Diff line number Diff line change @@ -7,7 +7,12 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
7
7
8
8
## [ Unreleased]
9
9
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
11
16
12
17
- Revert the ` riscv ` element, as well as the ` unstable-riscv ` feature.
13
18
@@ -61,7 +66,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
61
66
62
67
Previous versions in common [ changelog] ( ../CHANGELOG.md ) .
63
68
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
65
71
[ v0.14.6 ] : https://github.com/rust-embedded/svd/compare/svd-rs-v0.14.9...svd-rs-v0.14.10
66
72
[ v0.14.5 ] : https://github.com/rust-embedded/svd/compare/svd-rs-v0.14.8...svd-rs-v0.14.9
67
73
[ v0.14.4 ] : https://github.com/rust-embedded/svd/compare/svd-rs-v0.14.3...svd-rs-v0.14.4
Original file line number Diff line number Diff line change @@ -7,15 +7,15 @@ license = "MIT OR Apache-2.0"
7
7
name = " svd-encoder"
8
8
repository = " https://github.com/rust-embedded/svd"
9
9
edition = " 2021"
10
- rust-version = " 1.65 .0"
11
- version = " 0.14.6 "
10
+ rust-version = " 1.70 .0"
11
+ version = " 0.14.7 "
12
12
readme = " README.md"
13
13
14
14
[dependencies ]
15
15
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" }
17
17
thiserror = " 1.0.31"
18
18
19
19
[dependencies .xmltree ]
20
- version = " 0.10.3 "
20
+ version = " 0.11.0 "
21
21
features = [" attribute-order" ]
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ This project is developed and maintained by the [Tools team][team].
13
13
14
14
## Minimum Supported Rust Version (MSRV)
15
15
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*
17
17
compile with older versions but that may change in any new patch release.
18
18
19
19
## License
Original file line number Diff line number Diff line change @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
7
7
8
8
## [ Unreleased]
9
9
10
+ ## [ v0.14.9] - 2025-03-11
11
+
12
+ - Bump MSRV to 1.70.0
13
+
10
14
## [ v0.14.8] - 2025-02-08
11
15
12
16
- 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/).
84
88
85
89
Previous versions in common [ changelog] ( ../CHANGELOG.md ) .
86
90
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
88
93
[ v0.14.8 ] : https://github.com/rust-embedded/svd/compare/svd-rs-v0.14.9...svd-rs-v0.14.10
89
94
[ v0.14.6 ] : https://github.com/rust-embedded/svd/compare/svd-rs-v0.14.8...svd-rs-v0.14.9
90
95
[ v0.14.5 ] : https://github.com/rust-embedded/svd/compare/svd-parser-v0.14.4...svd-rs-v0.14.7
Original file line number Diff line number Diff line change @@ -10,16 +10,16 @@ license = "MIT OR Apache-2.0"
10
10
name = " svd-parser"
11
11
repository = " https://github.com/rust-embedded/svd"
12
12
edition = " 2021"
13
- rust-version = " 1.65 .0"
14
- version = " 0.14.8 "
13
+ rust-version = " 1.70 .0"
14
+ version = " 0.14.9 "
15
15
readme = " README.md"
16
16
17
17
[features ]
18
18
derive-from = [" svd-rs/derive-from" ]
19
19
expand = [" derive-from" ]
20
20
21
21
[dependencies ]
22
- svd-rs = { version = " 0.14.9 " , path = " ../svd-rs" }
22
+ svd-rs = { version = " 0.14.12 " , path = " ../svd-rs" }
23
23
roxmltree = " 0.20"
24
24
anyhow = " 1.0.58"
25
25
thiserror = " 1.0.31"
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ This project is developed and maintained by the [Tools team][team].
13
13
14
14
## Minimum Supported Rust Version (MSRV)
15
15
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*
17
17
compile with older versions but that may change in any new patch release.
18
18
19
19
## License
Original file line number Diff line number Diff line change @@ -7,6 +7,9 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
7
7
8
8
## [ Unreleased]
9
9
10
+ ## [ v0.14.12] - 2025-03-11
11
+
12
+ - Bump MSRV to 1.70.0
10
13
- Add missing entry for ` address_block ` in ` DeriveFrom ` impl
11
14
12
15
## [ v0.14.11] - 2025-02-10
@@ -134,7 +137,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
134
137
135
138
Previous versions in common [ changelog] ( ../CHANGELOG.md ) .
136
139
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
138
142
[ v0.14.11 ] : https://github.com/rust-embedded/svd/compare/svd-rs-v0.14.10...svd-rs-v0.14.11
139
143
[ v0.14.10 ] : https://github.com/rust-embedded/svd/compare/svd-rs-v0.14.9...svd-rs-v0.14.10
140
144
[ v0.14.9 ] : https://github.com/rust-embedded/svd/compare/svd-rs-v0.14.8...svd-rs-v0.14.9
Original file line number Diff line number Diff line change @@ -7,8 +7,8 @@ license = "MIT OR Apache-2.0"
7
7
name = " svd-rs"
8
8
repository = " https://github.com/rust-embedded/svd"
9
9
edition = " 2021"
10
- rust-version = " 1.65 .0"
11
- version = " 0.14.11 "
10
+ rust-version = " 1.70 .0"
11
+ version = " 0.14.12 "
12
12
readme = " README.md"
13
13
14
14
[features ]
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ This project is developed and maintained by the [Tools team][team].
13
13
14
14
## Minimum Supported Rust Version (MSRV)
15
15
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*
17
17
compile with older versions but that may change in any new patch release.
18
18
19
19
## License
Original file line number Diff line number Diff line change @@ -12,5 +12,5 @@ svd-rs = { path = "../svd-rs"}
12
12
svd-parser = { path = " ../svd-parser" }
13
13
svd-encoder = { path = " ../svd-encoder" }
14
14
roxmltree = " 0.20"
15
- xmltree = " 0.10.3 "
15
+ xmltree = " 0.11.0 "
16
16
anyhow = " 1.0.45"
You can’t perform that action at this time.
0 commit comments