Skip to content

Commit

Permalink
Merge pull request #243 from rust-embedded/release4
Browse files Browse the repository at this point in the history
release
  • Loading branch information
Emilgardis authored Nov 15, 2023
2 parents dbd7b55 + 4e04828 commit 4894fdf
Show file tree
Hide file tree
Showing 6 changed files with 21 additions and 10 deletions.
7 changes: 6 additions & 1 deletion svd-encoder/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/).

## Unreleased

## [v0.14.3] - 2023-11-15

- Bump `svd-rs` to 0.14.4

## [v0.14.3] - 2023-04-04

- Add `Sorting` options to `Config`
Expand Down Expand Up @@ -46,7 +50,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).

Previous versions in common [changelog](../CHANGELOG.md).

[Unreleased]: https://github.com/rust-embedded/svd/compare/svd-rs-v0.14.2...HEAD
[Unreleased]: https://github.com/rust-embedded/svd/compare/svd-rs-v0.14.4...HEAD
[v0.14.4]: https://github.com/rust-embedded/svd/compare/svd-rs-v0.14.3...svd-rs-v0.14.4
[v0.14.3]: https://github.com/rust-embedded/svd/compare/svd-encoder-v0.14.2..svd-rs-v0.14.2
[v0.14.2]: https://github.com/rust-embedded/svd/compare/svd-encoder-v0.14.1..svd-encoder-v0.14.2
[v0.14.1]: https://github.com/rust-embedded/svd/compare/v0.14.0..svd-encoder-v0.14.1
Expand Down
4 changes: 2 additions & 2 deletions svd-encoder/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@ name = "svd-encoder"
repository = "https://github.com/rust-embedded/svd"
edition = "2021"
rust-version = "1.58.0"
version = "0.14.3"
version = "0.14.4"
readme = "README.md"

[dependencies]
convert_case = "0.6.0"
svd-rs = { version = "0.14.2", path = "../svd-rs" }
svd-rs = { version = "0.14.4", path = "../svd-rs" }
thiserror = "1.0.31"

[dependencies.xmltree]
Expand Down
5 changes: 4 additions & 1 deletion svd-parser/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).

## Unreleased

## [v0.14.3] - 2023-11-15

- Correctly place `expand_properties` under `expand` feature

## [v0.14.2] - 2023-09-17
Expand Down Expand Up @@ -57,7 +59,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).

Previous versions in common [changelog](../CHANGELOG.md).

[Unreleased]: https://github.com/rust-embedded/svd/compare/svd-parser-v0.14.2...HEAD
[Unreleased]: https://github.com/rust-embedded/svd/compare/svd-rs-v0.14.4...HEAD
[v0.14.3]: https://github.com/rust-embedded/svd/compare/svd-rs-v0.14.3...svd-rs-v0.14.4
[v0.14.2]: https://github.com/rust-embedded/svd/compare/svd-rs-v0.14.2...svd-parser-v0.14.2
[v0.14.1]: https://github.com/rust-embedded/svd/compare/v0.14.0...svd-rs-v0.14.1
[v0.14.0]: https://github.com/rust-embedded/svd/compare/svd-parser-v0.13.4...v0.14.0
Expand Down
4 changes: 2 additions & 2 deletions svd-parser/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ name = "svd-parser"
repository = "https://github.com/rust-embedded/svd"
edition = "2021"
rust-version = "1.58.0"
version = "0.14.2"
version = "0.14.3"
readme = "README.md"

[features]
Expand All @@ -27,7 +27,7 @@ thiserror = "1.0.31"
[dev-dependencies]
serde_json = { version = "1.0", features = ["preserve_order"] }
serde_yaml = "0.8.26"
svd-rs = { version = "0.14.3", path = "../svd-rs", features = ["serde"] }
svd-rs = { version = "0.14.4", path = "../svd-rs", features = ["serde"] }

[[example]]
name = "svd2json"
9 changes: 6 additions & 3 deletions svd-rs/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,17 +7,19 @@ and this project adheres to [Semantic Versioning](http://semver.org/).

## Unreleased

## [v0.14.4] - 2023-11-15

- Add `expand` functions for arrays
- Fix `indexes_as_range`

## [v0.14.3] - 2023-04-04
## [v0.14.3] - 2023-10-24

- Bump MSRV to 1.58.0
- `array::names` returns custom names if specified
- add `Description` trait and `array::descriptions`
- add write constraint range check

## [v0.14.2] - 2023-04-04
## [v0.14.2] - 2023-05-10

- Add support of `a-Z` for `dimIndex`
- Add `name`, `description`, `address_offset` for `RegisterCluster`
Expand Down Expand Up @@ -91,7 +93,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).

Previous versions in common [changelog](../CHANGELOG.md).

[Unreleased]: https://github.com/rust-embedded/svd/compare/svd-rs-v0.14.3...HEAD
[Unreleased]: https://github.com/rust-embedded/svd/compare/svd-rs-v0.14.4...HEAD
[v0.14.4]: https://github.com/rust-embedded/svd/compare/svd-rs-v0.14.3...svd-rs-v0.14.4
[v0.14.3]: https://github.com/rust-embedded/svd/compare/svd-parser-v0.14.2...svd-rs-v0.14.3
[v0.14.2]: https://github.com/rust-embedded/svd/compare/svd-encoder-v0.14.2...svd-rs-v0.14.2
[v0.14.1]: https://github.com/rust-embedded/svd/compare/v0.14.0...svd-rs-v0.14.1
Expand Down
2 changes: 1 addition & 1 deletion svd-rs/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ name = "svd-rs"
repository = "https://github.com/rust-embedded/svd"
edition = "2021"
rust-version = "1.58.0"
version = "0.14.3"
version = "0.14.4"
readme = "README.md"

[features]
Expand Down

0 comments on commit 4894fdf

Please sign in to comment.