Skip to content

Commit 4894fdf

Browse files
authored
Merge pull request #243 from rust-embedded/release4
release
2 parents dbd7b55 + 4e04828 commit 4894fdf

File tree

6 files changed

+21
-10
lines changed

6 files changed

+21
-10
lines changed

svd-encoder/CHANGELOG.md

+6-1
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.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

4751
Previous 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

svd-encoder/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@ name = "svd-encoder"
88
repository = "https://github.com/rust-embedded/svd"
99
edition = "2021"
1010
rust-version = "1.58.0"
11-
version = "0.14.3"
11+
version = "0.14.4"
1212
readme = "README.md"
1313

1414
[dependencies]
1515
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" }
1717
thiserror = "1.0.31"
1818

1919
[dependencies.xmltree]

svd-parser/CHANGELOG.md

+4-1
Original file line numberDiff line numberDiff 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

5860
Previous 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

svd-parser/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ name = "svd-parser"
1111
repository = "https://github.com/rust-embedded/svd"
1212
edition = "2021"
1313
rust-version = "1.58.0"
14-
version = "0.14.2"
14+
version = "0.14.3"
1515
readme = "README.md"
1616

1717
[features]
@@ -27,7 +27,7 @@ thiserror = "1.0.31"
2727
[dev-dependencies]
2828
serde_json = { version = "1.0", features = ["preserve_order"] }
2929
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"] }
3131

3232
[[example]]
3333
name = "svd2json"

svd-rs/CHANGELOG.md

+6-3
Original file line numberDiff line numberDiff 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

9294
Previous 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

svd-rs/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ name = "svd-rs"
1010
repository = "https://github.com/rust-embedded/svd"
1111
edition = "2021"
1212
rust-version = "1.58.0"
13-
version = "0.14.3"
13+
version = "0.14.4"
1414
readme = "README.md"
1515

1616
[features]

0 commit comments

Comments
 (0)