Skip to content

Commit 42ebfe5

Browse files
committed
Release all crates
1 parent e592a3a commit 42ebfe5

File tree

12 files changed

+26
-7
lines changed

12 files changed

+26
-7
lines changed

rtic-common/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,14 @@ For each category, *Added*, *Changed*, *Fixed* add new entries at the top!
77

88
## [Unreleased]
99

10+
### Added
11+
12+
### Changed
13+
14+
### Fixed
15+
16+
## v1.1.0 - 2025-06-22
17+
1018
- Fix minor unsoundnes in `Link::remove_from_list`.
1119

1220
### Added

rtic-common/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rtic-common"
3-
version = "1.0.1"
3+
version = "1.1.0"
44

55
edition = "2021"
66
authors = [

rtic-macros/CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ For each category, *Added*, *Changed*, *Fixed* add new entries at the top!
77

88
## [Unreleased]
99

10+
## [v2.2.0] - 2025-06-22
11+
1012
### Added
1113

1214
- Added `waker` getter to software tasks

rtic-macros/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ name = "rtic-macros"
2222
readme = "../README.md"
2323
repository = "https://github.com/rtic-rs/rtic"
2424

25-
version = "2.1.3"
25+
version = "2.2.0"
2626

2727
[package.metadata.docs.rs]
2828
features = ["test-template"]

rtic-monotonics/CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,15 @@ For each category, *Added*, *Changed*, *Fixed* add new entries at the top!
77

88
## Unreleased
99

10+
## v2.1.0 - 2025-06-22
11+
1012
### Changed
1113

1214
- Updated esp32c3 dependency to v0.28.0
1315
- Updated esp32c3 dependency to v0.27.0
1416

1517
### Added
18+
1619
- `SYSTIMER` based monotonic for the ESP32-C6
1720

1821
## v2.0.3 - 2024-10-23

rtic-monotonics/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rtic-monotonics"
3-
version = "2.0.3"
3+
version = "2.1.0"
44

55
edition = "2021"
66
authors = [

rtic-sync/CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ For each category, _Added_, _Changed_, _Fixed_ add new entries at the top!
77

88
## [Unreleased]
99

10+
## v1.4.0 - 2025-06-22
11+
1012
### Added
1113

1214
- 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()`.

rtic-sync/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rtic-sync"
3-
version = "1.3.2"
3+
version = "1.4.0"
44

55
edition = "2021"
66
authors = [

rtic-time/CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ For each category, *Added*, *Changed*, *Fixed* add new entries at the top!
77

88
## Unreleased
99

10+
## v2.0.1 - 2025-06-22
11+
1012
### Changed
1113

1214
- Replace `async` implementations of `delay`/`delay_until`/`timeout`/`timeout_at` with structs to reduce memory usage.

rtic-time/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rtic-time"
3-
version = "2.0.0"
3+
version = "2.0.1"
44

55
edition = "2021"
66
authors = [

0 commit comments

Comments
 (0)