diff --git a/CHANGELOG.md b/CHANGELOG.md index 76eb00d0..b27ed24b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/). ## [Unreleased] +## [v0.31.5] - 2024-01-04 + - `move` in `RegisterBlock::reg_iter` implementation (iterator of register/cluster array) - Fix `cargo doc` constants generation @@ -861,7 +863,8 @@ peripheral.register.write(|w| w.field().set()); - Initial version of the `svd2rust` tool -[Unreleased]: https://github.com/rust-embedded/svd2rust/compare/v0.31.4...HEAD +[Unreleased]: https://github.com/rust-embedded/svd2rust/compare/v0.31.5...HEAD +[v0.31.5]: https://github.com/rust-embedded/svd2rust/compare/v0.31.4...v0.31.5 [v0.31.4]: https://github.com/rust-embedded/svd2rust/compare/v0.31.3...v0.31.4 [v0.31.3]: https://github.com/rust-embedded/svd2rust/compare/v0.31.2...v0.31.3 [v0.31.2]: https://github.com/rust-embedded/svd2rust/compare/v0.31.1...v0.31.2 diff --git a/Cargo.lock b/Cargo.lock index a2acfcfc..4299f182 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1215,7 +1215,7 @@ dependencies = [ [[package]] name = "svd2rust" -version = "0.31.4" +version = "0.31.5" dependencies = [ "anyhow", "clap", diff --git a/Cargo.toml b/Cargo.toml index 055bdfe5..b07a8b9a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -23,7 +23,7 @@ keywords = [ license = "MIT OR Apache-2.0" name = "svd2rust" repository = "https://github.com/rust-embedded/svd2rust/" -version = "0.31.4" +version = "0.31.5" readme = "README.md" rust-version = "1.70"