diff --git a/CHANGELOG.md b/CHANGELOG.md index 2e13e561..03c8720f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/). ## [Unreleased] +## [v0.30.2] - 2023-10-22 + +- Fix documentation warnings - Use `ArrayProxy` for memory disjoined register arrays - Use `const fn` where allowed @@ -813,7 +816,8 @@ peripheral.register.write(|w| w.field().set()); - Initial version of the `svd2rust` tool -[Unreleased]: https://github.com/rust-embedded/svd2rust/compare/v0.30.1...HEAD +[Unreleased]: https://github.com/rust-embedded/svd2rust/compare/v0.30.2...HEAD +[v0.30.2]: https://github.com/rust-embedded/svd2rust/compare/v0.30.1...v0.30.2 [v0.30.1]: https://github.com/rust-embedded/svd2rust/compare/v0.30.0...v0.30.1 [v0.30.0]: https://github.com/rust-embedded/svd2rust/compare/v0.29.0...v0.30.0 [v0.29.0]: https://github.com/rust-embedded/svd2rust/compare/v0.28.0...v0.29.0 diff --git a/Cargo.lock b/Cargo.lock index 0a596acd..404c15ca 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -526,7 +526,7 @@ dependencies = [ [[package]] name = "svd2rust" -version = "0.30.1" +version = "0.30.2" dependencies = [ "anyhow", "clap", diff --git a/Cargo.toml b/Cargo.toml index cebb98e9..339672b2 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.30.1" +version = "0.30.2" readme = "README.md" rust-version = "1.70"