File tree 6 files changed +21
-10
lines changed
6 files changed +21
-10
lines changed 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.3] - 2023-11-15
11
+
12
+ - Bump ` svd-rs ` to 0.14.4
13
+
10
14
## [ v0.14.3] - 2023-04-04
11
15
12
16
- Add ` Sorting ` options to ` Config `
@@ -46,7 +50,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
46
50
47
51
Previous versions in common [ changelog] ( ../CHANGELOG.md ) .
48
52
49
- [ Unreleased ] : https://github.com/rust-embedded/svd/compare/svd-rs-v0.14.2...HEAD
53
+ [ Unreleased ] : https://github.com/rust-embedded/svd/compare/svd-rs-v0.14.4...HEAD
54
+ [ v0.14.4 ] : https://github.com/rust-embedded/svd/compare/svd-rs-v0.14.3...svd-rs-v0.14.4
50
55
[ v0.14.3 ] : https://github.com/rust-embedded/svd/compare/svd-encoder-v0.14.2..svd-rs-v0.14.2
51
56
[ v0.14.2 ] : https://github.com/rust-embedded/svd/compare/svd-encoder-v0.14.1..svd-encoder-v0.14.2
52
57
[ v0.14.1 ] : https://github.com/rust-embedded/svd/compare/v0.14.0..svd-encoder-v0.14.1
Original file line number Diff line number Diff line change @@ -8,12 +8,12 @@ name = "svd-encoder"
8
8
repository = " https://github.com/rust-embedded/svd"
9
9
edition = " 2021"
10
10
rust-version = " 1.58.0"
11
- version = " 0.14.3 "
11
+ version = " 0.14.4 "
12
12
readme = " README.md"
13
13
14
14
[dependencies ]
15
15
convert_case = " 0.6.0"
16
- svd-rs = { version = " 0.14.2 " , path = " ../svd-rs" }
16
+ svd-rs = { version = " 0.14.4 " , path = " ../svd-rs" }
17
17
thiserror = " 1.0.31"
18
18
19
19
[dependencies .xmltree ]
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.3] - 2023-11-15
11
+
10
12
- Correctly place ` expand_properties ` under ` expand ` feature
11
13
12
14
## [ v0.14.2] - 2023-09-17
@@ -57,7 +59,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
57
59
58
60
Previous versions in common [ changelog] ( ../CHANGELOG.md ) .
59
61
60
- [ Unreleased ] : https://github.com/rust-embedded/svd/compare/svd-parser-v0.14.2...HEAD
62
+ [ Unreleased ] : https://github.com/rust-embedded/svd/compare/svd-rs-v0.14.4...HEAD
63
+ [ v0.14.3 ] : https://github.com/rust-embedded/svd/compare/svd-rs-v0.14.3...svd-rs-v0.14.4
61
64
[ v0.14.2 ] : https://github.com/rust-embedded/svd/compare/svd-rs-v0.14.2...svd-parser-v0.14.2
62
65
[ v0.14.1 ] : https://github.com/rust-embedded/svd/compare/v0.14.0...svd-rs-v0.14.1
63
66
[ v0.14.0 ] : https://github.com/rust-embedded/svd/compare/svd-parser-v0.13.4...v0.14.0
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ name = "svd-parser"
11
11
repository = " https://github.com/rust-embedded/svd"
12
12
edition = " 2021"
13
13
rust-version = " 1.58.0"
14
- version = " 0.14.2 "
14
+ version = " 0.14.3 "
15
15
readme = " README.md"
16
16
17
17
[features ]
@@ -27,7 +27,7 @@ thiserror = "1.0.31"
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.3 " , path = " ../svd-rs" , features = [" serde" ] }
30
+ svd-rs = { version = " 0.14.4 " , 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,17 +7,19 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
7
7
8
8
## Unreleased
9
9
10
+ ## [ v0.14.4] - 2023-11-15
11
+
10
12
- Add ` expand ` functions for arrays
11
13
- Fix ` indexes_as_range `
12
14
13
- ## [ v0.14.3] - 2023-04-04
15
+ ## [ v0.14.3] - 2023-10-24
14
16
15
17
- Bump MSRV to 1.58.0
16
18
- ` array::names ` returns custom names if specified
17
19
- add ` Description ` trait and ` array::descriptions `
18
20
- add write constraint range check
19
21
20
- ## [ v0.14.2] - 2023-04-04
22
+ ## [ v0.14.2] - 2023-05-10
21
23
22
24
- Add support of ` a-Z ` for ` dimIndex `
23
25
- Add ` name ` , ` description ` , ` address_offset ` for ` RegisterCluster `
@@ -91,7 +93,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
91
93
92
94
Previous versions in common [ changelog] ( ../CHANGELOG.md ) .
93
95
94
- [ Unreleased ] : https://github.com/rust-embedded/svd/compare/svd-rs-v0.14.3...HEAD
96
+ [ Unreleased ] : https://github.com/rust-embedded/svd/compare/svd-rs-v0.14.4...HEAD
97
+ [ v0.14.4 ] : https://github.com/rust-embedded/svd/compare/svd-rs-v0.14.3...svd-rs-v0.14.4
95
98
[ v0.14.3 ] : https://github.com/rust-embedded/svd/compare/svd-parser-v0.14.2...svd-rs-v0.14.3
96
99
[ v0.14.2 ] : https://github.com/rust-embedded/svd/compare/svd-encoder-v0.14.2...svd-rs-v0.14.2
97
100
[ v0.14.1 ] : https://github.com/rust-embedded/svd/compare/v0.14.0...svd-rs-v0.14.1
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.3 "
13
+ version = " 0.14.4 "
14
14
readme = " README.md"
15
15
16
16
[features ]
You can’t perform that action at this time.
0 commit comments