Release all crates

This commit is contained in:
Emil Fresk 2025-06-22 11:17:40 +02:00
parent e592a3aa12
commit 42ebfe57f1
12 changed files with 26 additions and 7 deletions

View file

@ -7,6 +7,14 @@ For each category, *Added*, *Changed*, *Fixed* add new entries at the top!
## [Unreleased] ## [Unreleased]
### Added
### Changed
### Fixed
## v1.1.0 - 2025-06-22
- Fix minor unsoundnes in `Link::remove_from_list`. - Fix minor unsoundnes in `Link::remove_from_list`.
### Added ### Added

View file

@ -1,6 +1,6 @@
[package] [package]
name = "rtic-common" name = "rtic-common"
version = "1.0.1" version = "1.1.0"
edition = "2021" edition = "2021"
authors = [ authors = [

View file

@ -7,6 +7,8 @@ For each category, *Added*, *Changed*, *Fixed* add new entries at the top!
## [Unreleased] ## [Unreleased]
## [v2.2.0] - 2025-06-22
### Added ### Added
- Added `waker` getter to software tasks - Added `waker` getter to software tasks

View file

@ -22,7 +22,7 @@ name = "rtic-macros"
readme = "../README.md" readme = "../README.md"
repository = "https://github.com/rtic-rs/rtic" repository = "https://github.com/rtic-rs/rtic"
version = "2.1.3" version = "2.2.0"
[package.metadata.docs.rs] [package.metadata.docs.rs]
features = ["test-template"] features = ["test-template"]

View file

@ -7,12 +7,15 @@ For each category, *Added*, *Changed*, *Fixed* add new entries at the top!
## Unreleased ## Unreleased
## v2.1.0 - 2025-06-22
### Changed ### Changed
- Updated esp32c3 dependency to v0.28.0 - Updated esp32c3 dependency to v0.28.0
- Updated esp32c3 dependency to v0.27.0 - Updated esp32c3 dependency to v0.27.0
### Added ### Added
- `SYSTIMER` based monotonic for the ESP32-C6 - `SYSTIMER` based monotonic for the ESP32-C6
## v2.0.3 - 2024-10-23 ## v2.0.3 - 2024-10-23

View file

@ -1,6 +1,6 @@
[package] [package]
name = "rtic-monotonics" name = "rtic-monotonics"
version = "2.0.3" version = "2.1.0"
edition = "2021" edition = "2021"
authors = [ authors = [

View file

@ -7,6 +7,8 @@ For each category, _Added_, _Changed_, _Fixed_ add new entries at the top!
## [Unreleased] ## [Unreleased]
## v1.4.0 - 2025-06-22
### Added ### Added
- Add `arbiter::{i2c, spi}::BlockingArbiterDevice` which allows sharing of `embedded_hal` (non-async) buses. This also helps during initialization of RTIC apps as you can use the arbiter while in `init`. After initialization is complete, convert an `BlockingArbiterDevice` into an `ArbiterDevice` using `BlockingArbiterDevice::into_non_blocking()`. - Add `arbiter::{i2c, spi}::BlockingArbiterDevice` which allows sharing of `embedded_hal` (non-async) buses. This also helps during initialization of RTIC apps as you can use the arbiter while in `init`. After initialization is complete, convert an `BlockingArbiterDevice` into an `ArbiterDevice` using `BlockingArbiterDevice::into_non_blocking()`.

View file

@ -1,6 +1,6 @@
[package] [package]
name = "rtic-sync" name = "rtic-sync"
version = "1.3.2" version = "1.4.0"
edition = "2021" edition = "2021"
authors = [ authors = [

View file

@ -7,6 +7,8 @@ For each category, *Added*, *Changed*, *Fixed* add new entries at the top!
## Unreleased ## Unreleased
## v2.0.1 - 2025-06-22
### Changed ### Changed
- Replace `async` implementations of `delay`/`delay_until`/`timeout`/`timeout_at` with structs to reduce memory usage. - Replace `async` implementations of `delay`/`delay_until`/`timeout`/`timeout_at` with structs to reduce memory usage.

View file

@ -1,6 +1,6 @@
[package] [package]
name = "rtic-time" name = "rtic-time"
version = "2.0.0" version = "2.0.1"
edition = "2021" edition = "2021"
authors = [ authors = [

View file

@ -20,6 +20,8 @@ Example:
## [Unreleased] ## [Unreleased]
## [v2.2.0] - 2025-06-22
### Added ### Added
- Added public `waker` constructor to the executor. - Added public `waker` constructor to the executor.

View file

@ -16,7 +16,7 @@ name = "rtic"
readme = "../README.md" readme = "../README.md"
repository = "https://github.com/rtic-rs/rtic" repository = "https://github.com/rtic-rs/rtic"
version = "2.1.3" version = "2.2.0"
[package.metadata.docs.rs] [package.metadata.docs.rs]
features = ["thumbv7-backend"] features = ["thumbv7-backend"]
@ -32,7 +32,7 @@ riscv = { version = "0.14.0", optional = true }
cortex-m = { version = "0.7.0", optional = true } cortex-m = { version = "0.7.0", optional = true }
bare-metal = "1.0.0" bare-metal = "1.0.0"
portable-atomic = { version = "1", default-features = false } portable-atomic = { version = "1", default-features = false }
rtic-macros = { path = "../rtic-macros", version = "=2.1.3" } rtic-macros = { path = "../rtic-macros", version = "=2.2.0" }
rtic-core = "1" rtic-core = "1"
critical-section = "1" critical-section = "1"