diff --git a/CHANGELOG.md b/CHANGELOG.md index e921e919..ab5992eb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/). ## [Unreleased] +## [v0.36.0] - 2025-03-09 + - Generic `Periph` - use `ConstZero::ZERO` instead of `Default::default()` to force const - Add `mtvec_align` field to `riscv_config` to configure the byte alignment of interrupt vector table. @@ -946,7 +948,8 @@ peripheral.register.write(|w| w.field().set()); - Initial version of the `svd2rust` tool -[Unreleased]: https://github.com/rust-embedded/svd2rust/compare/v0.35.0...HEAD +[Unreleased]: https://github.com/rust-embedded/svd2rust/compare/v0.36.0...HEAD +[v0.36.0]: https://github.com/rust-embedded/svd2rust/compare/v0.35.0...v0.36.0 [v0.35.0]: https://github.com/rust-embedded/svd2rust/compare/v0.34.0...v0.35.0 [v0.34.0]: https://github.com/rust-embedded/svd2rust/compare/v0.33.5...v0.34.0 [v0.33.5]: https://github.com/rust-embedded/svd2rust/compare/v0.33.4...v0.33.5 diff --git a/Cargo.lock b/Cargo.lock index 6caca339..f538b364 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1491,7 +1491,7 @@ dependencies = [ [[package]] name = "svd2rust" -version = "0.35.0" +version = "0.36.0" dependencies = [ "anyhow", "clap", diff --git a/Cargo.toml b/Cargo.toml index c878da9a..86587a67 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -17,7 +17,7 @@ keywords = ["svd", "embedded", "register", "map", "generator"] license = "MIT OR Apache-2.0" name = "svd2rust" repository = "https://github.com/rust-embedded/svd2rust/" -version = "0.35.0" +version = "0.36.0" readme = "README.md" rust-version = "1.74"