Skip to content

Commit 4075e69

Browse files
authored
Merge pull request #285 from rust-embedded/r01410
release 0.14.10
2 parents 1c1982e + dc32237 commit 4075e69

File tree

6 files changed

+22
-15
lines changed

6 files changed

+22
-15
lines changed

svd-encoder/CHANGELOG.md

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,13 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](http://keepachangelog.com/)
66
and this project adheres to [Semantic Versioning](http://semver.org/).
77

8-
## Unreleased
8+
## [Unreleased]
9+
10+
## [v0.14.5] - 2025-02-08
911

1012
- Revert the `riscv` element, as well as the `unstable-riscv` feature.
1113

12-
## [v0.14.5] - 2023-08-20
14+
## [v0.14.5] - 2024-08-20
1315

1416
- Adapt the `riscv` element to handle `riscv::Exception`.
1517
- Add `riscv` element for configuration parameters related to RISC-V targets.
@@ -59,7 +61,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
5961

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

62-
[Unreleased]: https://github.com/rust-embedded/svd/compare/svd-rs-v0.14.5...HEAD
64+
[Unreleased]: https://github.com/rust-embedded/svd/compare/svd-rs-v0.14.10...HEAD
65+
[v0.14.6]: https://github.com/rust-embedded/svd/compare/svd-rs-v0.14.9...svd-rs-v0.14.10
6366
[v0.14.5]: https://github.com/rust-embedded/svd/compare/svd-rs-v0.14.8...svd-rs-v0.14.9
6467
[v0.14.4]: https://github.com/rust-embedded/svd/compare/svd-rs-v0.14.3...svd-rs-v0.14.4
6568
[v0.14.3]: https://github.com/rust-embedded/svd/compare/svd-encoder-v0.14.2..svd-rs-v0.14.2

svd-encoder/Cargo.toml

Lines changed: 2 additions & 2 deletions
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.65.0"
11-
version = "0.14.5"
11+
version = "0.14.6"
1212
readme = "README.md"
1313

1414
[dependencies]
1515
convert_case = "0.6.0"
16-
svd-rs = { version = "0.14.9", path = "../svd-rs" }
16+
svd-rs = { version = "0.14.10", path = "../svd-rs" }
1717
thiserror = "1.0.31"
1818

1919
[dependencies.xmltree]

svd-parser/CHANGELOG.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,9 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](http://keepachangelog.com/)
66
and this project adheres to [Semantic Versioning](http://semver.org/).
77

8-
## Unreleased
8+
## [Unreleased]
9+
10+
## [v0.14.8] - 2025-02-08
911

1012
- Revert the `riscv` element, as well as the `unstable-riscv` feature.
1113

@@ -82,7 +84,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
8284

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

85-
[Unreleased]: https://github.com/rust-embedded/svd/compare/svd-rs-v0.14.6...HEAD
87+
[Unreleased]: https://github.com/rust-embedded/svd/compare/svd-rs-v0.14.10...HEAD
88+
[v0.14.8]: https://github.com/rust-embedded/svd/compare/svd-rs-v0.14.9...svd-rs-v0.14.10
8689
[v0.14.6]: https://github.com/rust-embedded/svd/compare/svd-rs-v0.14.8...svd-rs-v0.14.9
8790
[v0.14.5]: https://github.com/rust-embedded/svd/compare/svd-parser-v0.14.4...svd-rs-v0.14.7
8891
[v0.14.4]: https://github.com/rust-embedded/svd/compare/svd-parser-v0.14.3...svd-parser-v0.14.4

svd-parser/Cargo.toml

Lines changed: 2 additions & 2 deletions
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.65.0"
14-
version = "0.14.7"
14+
version = "0.14.8"
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.9", path = "../svd-rs", features = ["serde"] }
30+
svd-rs = { version = "0.14.10", path = "../svd-rs", features = ["serde"] }
3131

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

svd-rs/CHANGELOG.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,9 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](http://keepachangelog.com/)
66
and this project adheres to [Semantic Versioning](http://semver.org/).
77

8-
## Unreleased
8+
## [Unreleased]
9+
10+
## [v0.14.10] - 2025-02-08
911

1012
- Do not derive `DimElement`
1113
- Revert the `riscv` elements, as well as the `unstable-riscv` feature.
@@ -126,7 +128,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
126128

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

129-
[Unreleased]: https://github.com/rust-embedded/svd/compare/svd-rs-v0.14.9...HEAD
131+
[Unreleased]: https://github.com/rust-embedded/svd/compare/svd-rs-v0.14.10...HEAD
132+
[v0.14.10]: https://github.com/rust-embedded/svd/compare/svd-rs-v0.14.9...svd-rs-v0.14.10
130133
[v0.14.9]: https://github.com/rust-embedded/svd/compare/svd-rs-v0.14.8...svd-rs-v0.14.9
131134
[v0.14.8]: https://github.com/rust-embedded/svd/compare/svd-rs-v0.14.7...svd-rs-v0.14.8
132135
[v0.14.7]: https://github.com/rust-embedded/svd/compare/svd-rs-v0.14.6...svd-rs-v0.14.7

svd-rs/Cargo.toml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
[package]
2-
authors = [
3-
"The Tools Team <[email protected]>",
4-
]
2+
authors = ["The Tools Team <[email protected]>"]
53
description = "A CMSIS-SVD base structures"
64
documentation = "https://docs.rs/svd-rs"
75
keywords = ["CMSIS", "SVD"]
@@ -10,7 +8,7 @@ name = "svd-rs"
108
repository = "https://github.com/rust-embedded/svd"
119
edition = "2021"
1210
rust-version = "1.65.0"
13-
version = "0.14.9"
11+
version = "0.14.10"
1412
readme = "README.md"
1513

1614
[features]

0 commit comments

Comments
 (0)