Skip to content

Commit

Permalink
Merge pull request #271 from rust-embedded/r0149
Browse files Browse the repository at this point in the history
release 0.14.9
  • Loading branch information
burrbull authored Aug 21, 2024
2 parents 5989a86 + d916126 commit 6464100
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 9 deletions.
7 changes: 5 additions & 2 deletions svd-encoder/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,14 @@ and this project adheres to [Semantic Versioning](http://semver.org/).

## Unreleased

## [v0.14.5] - 2023-08-20

- Adapt the `riscv` element to handle `riscv::Exception`.
- Add `riscv` element for configuration parameters related to RISC-V targets.
You must use the `unstable-riscv` feature to enable this exeperimental element.
- Bump MSRV to 1.65.0

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

- Bump `svd-rs` to 0.14.4

Expand Down Expand Up @@ -55,7 +57,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.4...HEAD
[Unreleased]: https://github.com/rust-embedded/svd/compare/svd-rs-v0.14.5...HEAD
[v0.14.5]: https://github.com/rust-embedded/svd/compare/svd-rs-v0.14.8...svd-rs-v0.14.9
[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
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,15 +8,15 @@ name = "svd-encoder"
repository = "https://github.com/rust-embedded/svd"
edition = "2021"
rust-version = "1.65.0"
version = "0.14.4"
version = "0.14.5"
readme = "README.md"

[features]
unstable-riscv = ["svd-rs/unstable-riscv"]

[dependencies]
convert_case = "0.6.0"
svd-rs = { version = "0.14.7", path = "../svd-rs" }
svd-rs = { version = "0.14.9", 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.6] - 2024-08-20

- Adapt the `riscv` element to handle `riscv::Exception`.
- Add `riscv` element for configuration parameters related to RISC-V targets.
You must use the `unstable-riscv` feature to enable this exeperimental element.
Expand Down Expand Up @@ -74,7 +76,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.7...HEAD
[Unreleased]: https://github.com/rust-embedded/svd/compare/svd-rs-v0.14.6...HEAD
[v0.14.6]: https://github.com/rust-embedded/svd/compare/svd-rs-v0.14.8...svd-rs-v0.14.9
[v0.14.5]: https://github.com/rust-embedded/svd/compare/svd-parser-v0.14.4...svd-rs-v0.14.7
[v0.14.4]: https://github.com/rust-embedded/svd/compare/svd-parser-v0.14.3...svd-parser-v0.14.4
[v0.14.3]: https://github.com/rust-embedded/svd/compare/svd-parser-v0.14.2...svd-parser-v0.14.3
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.65.0"
version = "0.14.5"
version = "0.14.6"
readme = "README.md"

[features]
Expand All @@ -28,7 +28,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.7", path = "../svd-rs", features = ["serde"] }
svd-rs = { version = "0.14.9", path = "../svd-rs", features = ["serde"] }

[[example]]
name = "svd2json"
5 changes: 4 additions & 1 deletion svd-rs/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.9] - 2024-08-20

- Add `riscv::Exception` for custom exception source enumerations.
- Add `riscv` element for configuration parameters related to RISC-V targets.
You must use the `unstable-riscv` feature to enable this exeperimental element.
Expand Down Expand Up @@ -120,7 +122,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.8...HEAD
[Unreleased]: https://github.com/rust-embedded/svd/compare/svd-rs-v0.14.9...HEAD
[v0.14.9]: https://github.com/rust-embedded/svd/compare/svd-rs-v0.14.8...svd-rs-v0.14.9
[v0.14.8]: https://github.com/rust-embedded/svd/compare/svd-rs-v0.14.7...svd-rs-v0.14.8
[v0.14.7]: https://github.com/rust-embedded/svd/compare/svd-rs-v0.14.6...svd-rs-v0.14.7
[v0.14.6]: https://github.com/rust-embedded/svd/compare/svd-rs-v0.14.5...svd-rs-v0.14.6
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.65.0"
version = "0.14.8"
version = "0.14.9"
readme = "README.md"

[features]
Expand Down

0 comments on commit 6464100

Please sign in to comment.