mirror of
https://github.com/rtic-rs/rtic.git
synced 2025-12-16 04:45:19 +01:00
Release all crates
This commit is contained in:
parent
e592a3aa12
commit
42ebfe57f1
12 changed files with 26 additions and 7 deletions
|
|
@ -7,6 +7,14 @@ For each category, *Added*, *Changed*, *Fixed* add new entries at the top!
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
### Added
|
||||
|
||||
### Changed
|
||||
|
||||
### Fixed
|
||||
|
||||
## v1.1.0 - 2025-06-22
|
||||
|
||||
- Fix minor unsoundnes in `Link::remove_from_list`.
|
||||
|
||||
### Added
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "rtic-common"
|
||||
version = "1.0.1"
|
||||
version = "1.1.0"
|
||||
|
||||
edition = "2021"
|
||||
authors = [
|
||||
|
|
|
|||
|
|
@ -7,6 +7,8 @@ For each category, *Added*, *Changed*, *Fixed* add new entries at the top!
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## [v2.2.0] - 2025-06-22
|
||||
|
||||
### Added
|
||||
|
||||
- Added `waker` getter to software tasks
|
||||
|
|
|
|||
|
|
@ -22,7 +22,7 @@ name = "rtic-macros"
|
|||
readme = "../README.md"
|
||||
repository = "https://github.com/rtic-rs/rtic"
|
||||
|
||||
version = "2.1.3"
|
||||
version = "2.2.0"
|
||||
|
||||
[package.metadata.docs.rs]
|
||||
features = ["test-template"]
|
||||
|
|
|
|||
|
|
@ -7,12 +7,15 @@ For each category, *Added*, *Changed*, *Fixed* add new entries at the top!
|
|||
|
||||
## Unreleased
|
||||
|
||||
## v2.1.0 - 2025-06-22
|
||||
|
||||
### Changed
|
||||
|
||||
- Updated esp32c3 dependency to v0.28.0
|
||||
- Updated esp32c3 dependency to v0.27.0
|
||||
|
||||
### Added
|
||||
|
||||
- `SYSTIMER` based monotonic for the ESP32-C6
|
||||
|
||||
## v2.0.3 - 2024-10-23
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "rtic-monotonics"
|
||||
version = "2.0.3"
|
||||
version = "2.1.0"
|
||||
|
||||
edition = "2021"
|
||||
authors = [
|
||||
|
|
|
|||
|
|
@ -7,6 +7,8 @@ For each category, _Added_, _Changed_, _Fixed_ add new entries at the top!
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## v1.4.0 - 2025-06-22
|
||||
|
||||
### 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()`.
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "rtic-sync"
|
||||
version = "1.3.2"
|
||||
version = "1.4.0"
|
||||
|
||||
edition = "2021"
|
||||
authors = [
|
||||
|
|
|
|||
|
|
@ -7,6 +7,8 @@ For each category, *Added*, *Changed*, *Fixed* add new entries at the top!
|
|||
|
||||
## Unreleased
|
||||
|
||||
## v2.0.1 - 2025-06-22
|
||||
|
||||
### Changed
|
||||
|
||||
- Replace `async` implementations of `delay`/`delay_until`/`timeout`/`timeout_at` with structs to reduce memory usage.
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "rtic-time"
|
||||
version = "2.0.0"
|
||||
version = "2.0.1"
|
||||
|
||||
edition = "2021"
|
||||
authors = [
|
||||
|
|
|
|||
|
|
@ -20,6 +20,8 @@ Example:
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## [v2.2.0] - 2025-06-22
|
||||
|
||||
### Added
|
||||
|
||||
- Added public `waker` constructor to the executor.
|
||||
|
|
|
|||
|
|
@ -16,7 +16,7 @@ name = "rtic"
|
|||
readme = "../README.md"
|
||||
repository = "https://github.com/rtic-rs/rtic"
|
||||
|
||||
version = "2.1.3"
|
||||
version = "2.2.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.1.3" }
|
||||
rtic-macros = { path = "../rtic-macros", version = "=2.2.0" }
|
||||
rtic-core = "1"
|
||||
critical-section = "1"
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue