File tree Expand file tree Collapse file tree 7 files changed +22
-13
lines changed Expand file tree Collapse file tree 7 files changed +22
-13
lines changed Original file line number Diff line number Diff line change 29
29
- rust : nightly
30
30
experimental : true
31
31
# MSRV
32
- - rust : 1.58 .0
32
+ - rust : 1.60 .0
33
33
name : " MSRV"
34
34
steps :
35
35
- name : Checkout repository
Original file line number Diff line number Diff line change @@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
7
7
8
8
## Unreleased
9
9
10
+ ## [ v0.14.5] - 2024-01-03
11
+
12
+ - Bump MSRV to 1.60.0
13
+ - Bump svd-rs to 0.14.7, roxmltree to 0.19
14
+
10
15
## [ v0.14.4] - 2023-11-15
11
16
12
17
- Bump svd-rs dependency to 0.14.4 or higher.
@@ -63,7 +68,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
63
68
64
69
Previous versions in common [ changelog] ( ../CHANGELOG.md ) .
65
70
66
- [ Unreleased ] : https://github.com/rust-embedded/svd/compare/svd-parser-v0.14.4...HEAD
71
+ [ Unreleased ] : https://github.com/rust-embedded/svd/compare/svd-rs-v0.14.7...HEAD
72
+ [ v0.14.5 ] : https://github.com/rust-embedded/svd/compare/svd-parser-v0.14.4...svd-rs-v0.14.7
67
73
[ v0.14.4 ] : https://github.com/rust-embedded/svd/compare/svd-parser-v0.14.3...svd-parser-v0.14.4
68
74
[ v0.14.3 ] : https://github.com/rust-embedded/svd/compare/svd-parser-v0.14.2...svd-parser-v0.14.3
69
75
[ v0.14.2 ] : https://github.com/rust-embedded/svd/compare/svd-rs-v0.14.2...svd-parser-v0.14.2
Original file line number Diff line number Diff line change @@ -10,24 +10,24 @@ 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.58 .0"
14
- version = " 0.14.4 "
13
+ rust-version = " 1.60 .0"
14
+ version = " 0.14.5 "
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.4 " , path = " ../svd-rs" }
23
- roxmltree = " 0.18 "
22
+ svd-rs = { version = " 0.14.7 " , path = " ../svd-rs" }
23
+ roxmltree = " 0.19 "
24
24
anyhow = " 1.0.58"
25
25
thiserror = " 1.0.31"
26
26
27
27
[dev-dependencies ]
28
28
serde_json = { version = " 1.0" , features = [" preserve_order" ] }
29
29
serde_yaml = " 0.8.26"
30
- svd-rs = { version = " 0.14.4 " , path = " ../svd-rs" , features = [" serde" ] }
30
+ svd-rs = { version = " 0.14.7 " , path = " ../svd-rs" , features = [" serde" ] }
31
31
32
32
[[example ]]
33
33
name = " svd2json"
Original file line number Diff line number Diff line change @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
7
7
8
8
## Unreleased
9
9
10
+ ## [ v0.14.7] - 2024-01-03
11
+
10
12
- use close range in ` EnumeratedValue ` error message
11
13
12
14
## [ v0.14.6] - 2023-11-29
@@ -105,7 +107,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
105
107
106
108
Previous versions in common [ changelog] ( ../CHANGELOG.md ) .
107
109
108
- [ Unreleased ] : https://github.com/rust-embedded/svd/compare/svd-rs-v0.14.6...HEAD
110
+ [ Unreleased ] : https://github.com/rust-embedded/svd/compare/svd-rs-v0.14.7...HEAD
111
+ [ v0.14.7 ] : https://github.com/rust-embedded/svd/compare/svd-rs-v0.14.6...svd-rs-v0.14.7
109
112
[ v0.14.6 ] : https://github.com/rust-embedded/svd/compare/svd-rs-v0.14.5...svd-rs-v0.14.6
110
113
[ v0.14.5 ] : https://github.com/rust-embedded/svd/compare/svd-rs-v0.14.4...svd-rs-v0.14.5
111
114
[ 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 @@ -10,7 +10,7 @@ name = "svd-rs"
10
10
repository = " https://github.com/rust-embedded/svd"
11
11
edition = " 2021"
12
12
rust-version = " 1.58.0"
13
- version = " 0.14.6 "
13
+ version = " 0.14.7 "
14
14
readme = " README.md"
15
15
16
16
[features ]
@@ -20,10 +20,10 @@ derive-from = []
20
20
thiserror = " 1.0.31"
21
21
22
22
[dependencies .regex ]
23
- version = " 1"
23
+ version = " 1.9 "
24
24
25
25
[dependencies .once_cell ]
26
- version = " 1.17.1 "
26
+ version = " 1.17.2 "
27
27
28
28
[dependencies .serde ]
29
29
version = " 1.0"
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.58 .0 and up. It * might*
16
+ This crate is guaranteed to compile on stable Rust 1.60 .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 @@ -11,6 +11,6 @@ publish = false
11
11
svd-rs = { path = " ../svd-rs" }
12
12
svd-parser = { path = " ../svd-parser" }
13
13
svd-encoder = { path = " ../svd-encoder" }
14
- roxmltree = " 0.18 "
14
+ roxmltree = " 0.19 "
15
15
xmltree = " 0.10.3"
16
16
anyhow = " 1.0.45"
You can’t perform that action at this time.
0 commit comments