Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions rtic-macros/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -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`
Expand Down
2 changes: 1 addition & 1 deletion rtic-macros/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"]
Expand Down
2 changes: 2 additions & 0 deletions rtic/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
4 changes: 2 additions & 2 deletions rtic/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"]
Expand All @@ -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"

Expand Down
Loading