Skip to content

Commit

Permalink
release 0.14.7
Browse files Browse the repository at this point in the history
  • Loading branch information
burrbull committed Jan 3, 2024
1 parent ded7ef5 commit e78ee75
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 9 deletions.
7 changes: 6 additions & 1 deletion svd-parser/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.5] - 2024-01-03

- Bump svd-rs to 0.14.7, roxmltree to 0.19

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

- Bump svd-rs dependency to 0.14.4 or higher.
Expand Down Expand Up @@ -63,7 +67,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.4...HEAD
[Unreleased]: https://github.com/rust-embedded/svd/compare/svd-rs-v0.14.7...HEAD
[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
[v0.14.2]: https://github.com/rust-embedded/svd/compare/svd-rs-v0.14.2...svd-parser-v0.14.2
Expand Down
8 changes: 4 additions & 4 deletions svd-parser/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,23 +11,23 @@ name = "svd-parser"
repository = "https://github.com/rust-embedded/svd"
edition = "2021"
rust-version = "1.58.0"
version = "0.14.4"
version = "0.14.5"
readme = "README.md"

[features]
derive-from = ["svd-rs/derive-from"]
expand = ["derive-from"]

[dependencies]
svd-rs = { version = "0.14.4", path = "../svd-rs" }
roxmltree = "0.18"
svd-rs = { version = "0.14.7", path = "../svd-rs" }
roxmltree = "0.19"
anyhow = "1.0.58"
thiserror = "1.0.31"

[dev-dependencies]
serde_json = { version = "1.0", features = ["preserve_order"] }
serde_yaml = "0.8.26"
svd-rs = { version = "0.14.4", path = "../svd-rs", features = ["serde"] }
svd-rs = { version = "0.14.7", 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.7] - 2024-01-03

- use close range in `EnumeratedValue` error message

## [v0.14.6] - 2023-11-29
Expand Down Expand Up @@ -105,7 +107,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.6...HEAD
[Unreleased]: https://github.com/rust-embedded/svd/compare/svd-rs-v0.14.7...HEAD
[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
[v0.14.5]: https://github.com/rust-embedded/svd/compare/svd-rs-v0.14.4...svd-rs-v0.14.5
[v0.14.4]: https://github.com/rust-embedded/svd/compare/svd-rs-v0.14.3...svd-rs-v0.14.4
Expand Down
4 changes: 2 additions & 2 deletions 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.6"
version = "0.14.7"
readme = "README.md"

[features]
Expand All @@ -23,7 +23,7 @@ thiserror = "1.0.31"
version = "1"

[dependencies.once_cell]
version = "1.17.1"
version = "1.19.0"

[dependencies.serde]
version = "1.0"
Expand Down
2 changes: 1 addition & 1 deletion tests/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@ publish = false
svd-rs = { path = "../svd-rs"}
svd-parser = { path = "../svd-parser"}
svd-encoder = { path = "../svd-encoder"}
roxmltree = "0.18"
roxmltree = "0.19"
xmltree = "0.10.3"
anyhow = "1.0.45"

0 comments on commit e78ee75

Please sign in to comment.