Skip to content

Commit 6464100

Browse files
authored
Merge pull request #271 from rust-embedded/r0149
release 0.14.9
2 parents 5989a86 + d916126 commit 6464100

File tree

6 files changed

+18
-9
lines changed

6 files changed

+18
-9
lines changed

svd-encoder/CHANGELOG.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,14 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
77

88
## Unreleased
99

10+
## [v0.14.5] - 2023-08-20
11+
1012
- Adapt the `riscv` element to handle `riscv::Exception`.
1113
- Add `riscv` element for configuration parameters related to RISC-V targets.
1214
You must use the `unstable-riscv` feature to enable this exeperimental element.
1315
- Bump MSRV to 1.65.0
1416

15-
## [v0.14.3] - 2023-11-15
17+
## [v0.14.4] - 2023-11-15
1618

1719
- Bump `svd-rs` to 0.14.4
1820

@@ -55,7 +57,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
5557

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

58-
[Unreleased]: https://github.com/rust-embedded/svd/compare/svd-rs-v0.14.4...HEAD
60+
[Unreleased]: https://github.com/rust-embedded/svd/compare/svd-rs-v0.14.5...HEAD
61+
[v0.14.5]: https://github.com/rust-embedded/svd/compare/svd-rs-v0.14.8...svd-rs-v0.14.9
5962
[v0.14.4]: https://github.com/rust-embedded/svd/compare/svd-rs-v0.14.3...svd-rs-v0.14.4
6063
[v0.14.3]: https://github.com/rust-embedded/svd/compare/svd-encoder-v0.14.2..svd-rs-v0.14.2
6164
[v0.14.2]: https://github.com/rust-embedded/svd/compare/svd-encoder-v0.14.1..svd-encoder-v0.14.2

svd-encoder/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,15 @@ name = "svd-encoder"
88
repository = "https://github.com/rust-embedded/svd"
99
edition = "2021"
1010
rust-version = "1.65.0"
11-
version = "0.14.4"
11+
version = "0.14.5"
1212
readme = "README.md"
1313

1414
[features]
1515
unstable-riscv = ["svd-rs/unstable-riscv"]
1616

1717
[dependencies]
1818
convert_case = "0.6.0"
19-
svd-rs = { version = "0.14.7", path = "../svd-rs" }
19+
svd-rs = { version = "0.14.9", path = "../svd-rs" }
2020
thiserror = "1.0.31"
2121

2222
[dependencies.xmltree]

svd-parser/CHANGELOG.md

Lines changed: 4 additions & 1 deletion
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.6] - 2024-08-20
11+
1012
- Adapt the `riscv` element to handle `riscv::Exception`.
1113
- Add `riscv` element for configuration parameters related to RISC-V targets.
1214
You must use the `unstable-riscv` feature to enable this exeperimental element.
@@ -74,7 +76,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
7476

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

77-
[Unreleased]: https://github.com/rust-embedded/svd/compare/svd-rs-v0.14.7...HEAD
79+
[Unreleased]: https://github.com/rust-embedded/svd/compare/svd-rs-v0.14.6...HEAD
80+
[v0.14.6]: https://github.com/rust-embedded/svd/compare/svd-rs-v0.14.8...svd-rs-v0.14.9
7881
[v0.14.5]: https://github.com/rust-embedded/svd/compare/svd-parser-v0.14.4...svd-rs-v0.14.7
7982
[v0.14.4]: https://github.com/rust-embedded/svd/compare/svd-parser-v0.14.3...svd-parser-v0.14.4
8083
[v0.14.3]: https://github.com/rust-embedded/svd/compare/svd-parser-v0.14.2...svd-parser-v0.14.3

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.5"
14+
version = "0.14.6"
1515
readme = "README.md"
1616

1717
[features]
@@ -28,7 +28,7 @@ thiserror = "1.0.31"
2828
[dev-dependencies]
2929
serde_json = { version = "1.0", features = ["preserve_order"] }
3030
serde_yaml = "0.8.26"
31-
svd-rs = { version = "0.14.7", path = "../svd-rs", features = ["serde"] }
31+
svd-rs = { version = "0.14.9", path = "../svd-rs", features = ["serde"] }
3232

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

svd-rs/CHANGELOG.md

Lines changed: 4 additions & 1 deletion
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.9] - 2024-08-20
11+
1012
- Add `riscv::Exception` for custom exception source enumerations.
1113
- Add `riscv` element for configuration parameters related to RISC-V targets.
1214
You must use the `unstable-riscv` feature to enable this exeperimental element.
@@ -120,7 +122,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
120122

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

123-
[Unreleased]: https://github.com/rust-embedded/svd/compare/svd-rs-v0.14.8...HEAD
125+
[Unreleased]: https://github.com/rust-embedded/svd/compare/svd-rs-v0.14.9...HEAD
126+
[v0.14.9]: https://github.com/rust-embedded/svd/compare/svd-rs-v0.14.8...svd-rs-v0.14.9
124127
[v0.14.8]: https://github.com/rust-embedded/svd/compare/svd-rs-v0.14.7...svd-rs-v0.14.8
125128
[v0.14.7]: https://github.com/rust-embedded/svd/compare/svd-rs-v0.14.6...svd-rs-v0.14.7
126129
[v0.14.6]: https://github.com/rust-embedded/svd/compare/svd-rs-v0.14.5...svd-rs-v0.14.6

svd-rs/Cargo.toml

Lines changed: 1 addition & 1 deletion
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.65.0"
13-
version = "0.14.8"
13+
version = "0.14.9"
1414
readme = "README.md"
1515

1616
[features]

0 commit comments

Comments
 (0)