diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a7ec6239..bfde64b9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -153,11 +153,11 @@ jobs: - name: Cache uses: Swatinem/rust-cache@v2 with: - key: svdtools-0.2.3 + key: svdtools-0.3.19 - name: Install svdtools run: | - cargo install svdtools --version 0.2.3 --target-dir target + cargo install svdtools --version 0.3.19 --target-dir target - name: Run CI script run: | diff --git a/CHANGELOG.md b/CHANGELOG.md index 6fdad6f3..64475b5a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/). ## [Unreleased] +## [v0.34.0] - 2024-11-05 + - Revert #711 - Add `defmt` impls for `TryFromInterruptError`, riscv interrupt enums - Fix calculating `modifiedWriteValues` bitmasks with field arrays @@ -922,7 +924,10 @@ peripheral.register.write(|w| w.field().set()); - Initial version of the `svd2rust` tool -[Unreleased]: https://github.com/rust-embedded/svd2rust/compare/v0.33.3...HEAD +[Unreleased]: https://github.com/rust-embedded/svd2rust/compare/v0.34.0...HEAD +[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 +[v0.33.4]: https://github.com/rust-embedded/svd2rust/compare/v0.33.3...v0.33.4 [v0.33.3]: https://github.com/rust-embedded/svd2rust/compare/v0.33.2...v0.33.3 [v0.33.2]: https://github.com/rust-embedded/svd2rust/compare/v0.33.1...v0.33.2 [v0.33.1]: https://github.com/rust-embedded/svd2rust/compare/v0.33.0...v0.33.1 diff --git a/Cargo.lock b/Cargo.lock index 3c834cc6..f235d118 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1207,7 +1207,7 @@ dependencies = [ [[package]] name = "svd2rust" -version = "0.33.5" +version = "0.34.0" dependencies = [ "anyhow", "clap", diff --git a/Cargo.toml b/Cargo.toml index 897e6848..1d3e1a93 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.33.5" +version = "0.34.0" readme = "README.md" rust-version = "1.74"