Skip to content

Commit 87c2fc4

Browse files
authored
Merge pull request #944 from rust-embedded/r037
release 0.37
2 parents 0f42ae3 + b95275d commit 87c2fc4

File tree

3 files changed

+33
-10
lines changed

3 files changed

+33
-10
lines changed

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](https://semver.org/).
77

88
## [Unreleased]
99

10+
## [v0.37.0] - 2025-08-14
11+
1012
- Fix new `mismatched-lifetime-syntaxes` lint warnings
1113
- Adapt RISC-V specific codegen for `riscv-peripheral` v0.3.0 rework
1214
- Include `riscv-peripheral` peripherals in `Peripherals` struct
@@ -963,7 +965,8 @@ peripheral.register.write(|w| w.field().set());
963965

964966
- Initial version of the `svd2rust` tool
965967

966-
[Unreleased]: https://github.com/rust-embedded/svd2rust/compare/v0.36.1...HEAD
968+
[Unreleased]: https://github.com/rust-embedded/svd2rust/compare/v0.37.0...HEAD
969+
[v0.37.0]: https://github.com/rust-embedded/svd2rust/compare/v0.36.1...v0.37.0
967970
[v0.36.1]: https://github.com/rust-embedded/svd2rust/compare/v0.36.0...v0.36.1
968971
[v0.36.0]: https://github.com/rust-embedded/svd2rust/compare/v0.35.0...v0.36.0
969972
[v0.35.0]: https://github.com/rust-embedded/svd2rust/compare/v0.34.0...v0.35.0

Cargo.lock

Lines changed: 27 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ keywords = ["svd", "embedded", "register", "map", "generator"]
1717
license = "MIT OR Apache-2.0"
1818
name = "svd2rust"
1919
repository = "https://github.com/rust-embedded/svd2rust/"
20-
version = "0.36.1"
20+
version = "0.37.0"
2121
readme = "README.md"
2222
rust-version = "1.74"
2323

@@ -49,7 +49,7 @@ log = { version = "~0.4", features = ["std"] }
4949
quote = "1.0"
5050
proc-macro2 = "1.0"
5151
anyhow = "1.0"
52-
thiserror = "1.0"
52+
thiserror = "2.0"
5353
serde = { version = "1.0", optional = true }
5454
serde_json = { version = "1.0.85", optional = true }
5555
serde_yaml = { version = "0.9.11", optional = true }

0 commit comments

Comments
 (0)