File tree Expand file tree Collapse file tree 6 files changed +21
-10
lines changed Expand file tree Collapse file tree 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/).
77
88## Unreleased
99
10+ ## [ v0.14.3] - 2023-11-15
11+
12+ - Bump ` svd-rs ` to 0.14.4
13+
1014## [ v0.14.3] - 2023-04-04
1115
1216- Add ` Sorting ` options to ` Config `
@@ -46,7 +50,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
4650
4751Previous versions in common [ changelog] ( ../CHANGELOG.md ) .
4852
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
5055[ v0.14.3 ] : https://github.com/rust-embedded/svd/compare/svd-encoder-v0.14.2..svd-rs-v0.14.2
5156[ v0.14.2 ] : https://github.com/rust-embedded/svd/compare/svd-encoder-v0.14.1..svd-encoder-v0.14.2
5257[ 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"
88repository = " https://github.com/rust-embedded/svd"
99edition = " 2021"
1010rust-version = " 1.58.0"
11- version = " 0.14.3 "
11+ version = " 0.14.4 "
1212readme = " README.md"
1313
1414[dependencies ]
1515convert_case = " 0.6.0"
16- svd-rs = { version = " 0.14.2 " , path = " ../svd-rs" }
16+ svd-rs = { version = " 0.14.4 " , path = " ../svd-rs" }
1717thiserror = " 1.0.31"
1818
1919[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/).
77
88## Unreleased
99
10+ ## [ v0.14.3] - 2023-11-15
11+
1012- Correctly place ` expand_properties ` under ` expand ` feature
1113
1214## [ v0.14.2] - 2023-09-17
@@ -57,7 +59,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
5759
5860Previous versions in common [ changelog] ( ../CHANGELOG.md ) .
5961
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
6164[ v0.14.2 ] : https://github.com/rust-embedded/svd/compare/svd-rs-v0.14.2...svd-parser-v0.14.2
6265[ v0.14.1 ] : https://github.com/rust-embedded/svd/compare/v0.14.0...svd-rs-v0.14.1
6366[ 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"
1111repository = " https://github.com/rust-embedded/svd"
1212edition = " 2021"
1313rust-version = " 1.58.0"
14- version = " 0.14.2 "
14+ version = " 0.14.3 "
1515readme = " README.md"
1616
1717[features ]
@@ -27,7 +27,7 @@ thiserror = "1.0.31"
2727[dev-dependencies ]
2828serde_json = { version = " 1.0" , features = [" preserve_order" ] }
2929serde_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" ] }
3131
3232[[example ]]
3333name = " 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/).
77
88## Unreleased
99
10+ ## [ v0.14.4] - 2023-11-15
11+
1012- Add ` expand ` functions for arrays
1113- Fix ` indexes_as_range `
1214
13- ## [ v0.14.3] - 2023-04-04
15+ ## [ v0.14.3] - 2023-10-24
1416
1517- Bump MSRV to 1.58.0
1618- ` array::names ` returns custom names if specified
1719- add ` Description ` trait and ` array::descriptions `
1820- add write constraint range check
1921
20- ## [ v0.14.2] - 2023-04-04
22+ ## [ v0.14.2] - 2023-05-10
2123
2224- Add support of ` a-Z ` for ` dimIndex `
2325- Add ` name ` , ` description ` , ` address_offset ` for ` RegisterCluster `
@@ -91,7 +93,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
9193
9294Previous versions in common [ changelog] ( ../CHANGELOG.md ) .
9395
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
9598[ v0.14.3 ] : https://github.com/rust-embedded/svd/compare/svd-parser-v0.14.2...svd-rs-v0.14.3
9699[ v0.14.2 ] : https://github.com/rust-embedded/svd/compare/svd-encoder-v0.14.2...svd-rs-v0.14.2
97100[ 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"
1010repository = " https://github.com/rust-embedded/svd"
1111edition = " 2021"
1212rust-version = " 1.58.0"
13- version = " 0.14.3 "
13+ version = " 0.14.4 "
1414readme = " README.md"
1515
1616[features ]
You can’t perform that action at this time.
0 commit comments