From b33d8b4497cea0f64587866d66126553a0d81b59 Mon Sep 17 00:00:00 2001 From: Jonathan Pallant Date: Tue, 23 Jun 2026 15:25:12 +0100 Subject: [PATCH] Prepare 0.2.0 releases for both arm-dcc and panic-dcc Also includes missing CHANGELOG updates --- arm-dcc/CHANGELOG.md | 14 +++++++++++++- arm-dcc/Cargo.toml | 2 +- panic-dcc/CHANGELOG.md | 9 ++++++++- panic-dcc/Cargo.toml | 4 ++-- 4 files changed, 24 insertions(+), 5 deletions(-) diff --git a/arm-dcc/CHANGELOG.md b/arm-dcc/CHANGELOG.md index b285137..6eabbda 100644 --- a/arm-dcc/CHANGELOG.md +++ b/arm-dcc/CHANGELOG.md @@ -7,6 +7,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.2.0] - 2026-06-23 + +### Added + +* AArch64 support +* ARM7TDMI/ARM9EJ-S support (gated with `legacy-mode` feature) + +### Removed + +* Unused `__dcc_write` function + ## [0.1.1] - 2025-02-24 ### Added @@ -17,6 +28,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 * First release. -[unreleased]: https://github.com/rust-embedded/arm-dcc/compare/arm-dcc-v0.1.1...HEAD +[unreleased]: https://github.com/rust-embedded/arm-dcc/compare/arm-dcc-v0.2.0...HEAD +[0.2.0]: https://github.com/rust-embedded/arm-dcc/compare/arm-dcc-v0.1.1...arm-dcc-v0.2.0 [0.1.1]: https://github.com/rust-embedded/arm-dcc/compare/arm-dcc-v0.1.0...arm-dcc-v0.1.1 [0.1.0]: https://github.com/rust-embedded/arm-dcc/releases/tag/arm-dcc-v0.1.0 diff --git a/arm-dcc/Cargo.toml b/arm-dcc/Cargo.toml index 51555aa..659d59d 100644 --- a/arm-dcc/Cargo.toml +++ b/arm-dcc/Cargo.toml @@ -12,7 +12,7 @@ name = "arm-dcc" readme = "README.md" repository = "https://github.com/rust-embedded/arm-dcc" rust-version = "1.59" -version = "0.1.1" +version = "0.2.0" [features] nop = [] diff --git a/panic-dcc/CHANGELOG.md b/panic-dcc/CHANGELOG.md index 76fe2f2..aa0b483 100644 --- a/panic-dcc/CHANGELOG.md +++ b/panic-dcc/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.2.0] - 2026-06-23 + +### Changed + +* Switched to arm-dcc 0.2 + ## [0.1.1] - 2025-02-24 ### Added @@ -17,6 +23,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 * First release. -[unreleased]: https://github.com/rust-embedded/arm-dcc/compare/panic-dcc-v0.1.1...HEAD +[unreleased]: https://github.com/rust-embedded/arm-dcc/compare/panic-dcc-v0.2.0...HEAD +[0.2.0]: https://github.com/rust-embedded/arm-dcc/compare/panic-dcc-v0.1.1...panic-dcc-v0.2.0 [0.1.1]: https://github.com/rust-embedded/arm-dcc/compare/panic-dcc-v0.1.0...panic-dcc-v0.1.1 [0.1.0]: https://github.com/rust-embedded/arm-dcc/releases/tag/panic-dcc-v0.1.0 diff --git a/panic-dcc/Cargo.toml b/panic-dcc/Cargo.toml index 59dd2d0..87103c8 100644 --- a/panic-dcc/Cargo.toml +++ b/panic-dcc/Cargo.toml @@ -12,7 +12,7 @@ name = "panic-dcc" readme = "README.md" repository = "https://github.com/rust-embedded/arm-dcc" rust-version = "1.59" -version = "0.1.1" +version = "0.2.0" [dependencies] -arm-dcc = { path = "../arm-dcc", version = "0.1.1" } +arm-dcc = { path = "../arm-dcc", version = "0.2.0" }