From e710c38586b269933bcc1e57b12aefc7c20a98a4 Mon Sep 17 00:00:00 2001 From: datdenkikniet Date: Wed, 17 Sep 2025 19:59:25 +0200 Subject: [PATCH] rtic & rtic-macros: release v2.3.0 --- rtic-macros/CHANGELOG.md | 6 ++++-- rtic-macros/Cargo.toml | 2 +- rtic/CHANGELOG.md | 2 ++ rtic/Cargo.toml | 4 ++-- 4 files changed, 9 insertions(+), 5 deletions(-) diff --git a/rtic-macros/CHANGELOG.md b/rtic-macros/CHANGELOG.md index f9a9445e5d07..1d95d55dc9e2 100644 --- a/rtic-macros/CHANGELOG.md +++ b/rtic-macros/CHANGELOG.md @@ -5,7 +5,9 @@ This project adheres to [Semantic Versioning](http://semver.org/). For each category, *Added*, *Changed*, *Fixed* add new entries at the top! -## [Unreleased] +## Unreleased + +## [v2.3.0] - 2025-09-17 ### Added @@ -23,7 +25,7 @@ For each category, *Added*, *Changed*, *Fixed* add new entries at the top! ## [v2.1.3] - 2025-06-08 -### Changed +### Changed - Unstable support for ESP32-C6 - Adapt `slic` backends to new version with `mecall` diff --git a/rtic-macros/Cargo.toml b/rtic-macros/Cargo.toml index 84f2dc1d133b..7c9f1d9f403a 100644 --- a/rtic-macros/Cargo.toml +++ b/rtic-macros/Cargo.toml @@ -22,7 +22,7 @@ name = "rtic-macros" readme = "../README.md" repository = "https://github.com/rtic-rs/rtic" -version = "2.2.0" +version = "2.3.0" [package.metadata.docs.rs] features = ["test-template"] diff --git a/rtic/CHANGELOG.md b/rtic/CHANGELOG.md index e6ee9eb7cf95..6c35931428ef 100644 --- a/rtic/CHANGELOG.md +++ b/rtic/CHANGELOG.md @@ -20,6 +20,8 @@ Example: ## [Unreleased] +## [v2.3.0] - 2025-09-17 + ### Added - Outer attributes applied to RTIC app module are now forwarded to the generated code. diff --git a/rtic/Cargo.toml b/rtic/Cargo.toml index 1708a265cdee..c4b10f87061c 100644 --- a/rtic/Cargo.toml +++ b/rtic/Cargo.toml @@ -16,7 +16,7 @@ name = "rtic" readme = "../README.md" repository = "https://github.com/rtic-rs/rtic" -version = "2.2.0" +version = "2.3.0" [package.metadata.docs.rs] features = ["thumbv7-backend"] @@ -32,7 +32,7 @@ riscv = { version = "0.14.0", optional = true } cortex-m = { version = "0.7.0", optional = true } bare-metal = "1.0.0" portable-atomic = { version = "1", default-features = false } -rtic-macros = { path = "../rtic-macros", version = "=2.2.0" } +rtic-macros = { path = "../rtic-macros", version = "=2.3.0" } rtic-core = "1" critical-section = "1"