aboutsummaryrefslogtreecommitdiff
path: root/embassy-rp
diff options
context:
space:
mode:
authorUlf Lilleengen <[email protected]>2025-08-26 16:04:00 +0200
committerUlf Lilleengen <[email protected]>2025-08-26 16:05:09 +0200
commit83f2557eacd657070a84a9baf2da6e3aff03b2b7 (patch)
tree13ce7dc5787f05b4f5e087e891738ac5120112e3 /embassy-rp
parentb6a81d8bedeafa5166d0668c387ed65062777193 (diff)
chore: prepare embassy crate releases
Diffstat (limited to 'embassy-rp')
-rw-r--r--embassy-rp/CHANGELOG.md4
-rw-r--r--embassy-rp/Cargo.toml16
2 files changed, 12 insertions, 8 deletions
diff --git a/embassy-rp/CHANGELOG.md b/embassy-rp/CHANGELOG.md
index 5482f277f..ebdc3e1c8 100644
--- a/embassy-rp/CHANGELOG.md
+++ b/embassy-rp/CHANGELOG.md
@@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7 7
8<!-- next-header --> 8<!-- next-header -->
9## Unreleased - ReleaseDate 9## Unreleased - ReleaseDate
10
11## 0.8.0 - 2025-08-26
12
13## 0.7.1 - 2025-08-26
10- add `i2c` internal pullup options ([#4564](https://github.com/embassy-rs/embassy/pull/4564)) 14- add `i2c` internal pullup options ([#4564](https://github.com/embassy-rs/embassy/pull/4564))
11 15
12## 0.7.0 - 2025-08-04 16## 0.7.0 - 2025-08-04
diff --git a/embassy-rp/Cargo.toml b/embassy-rp/Cargo.toml
index a5f84944e..e9541295c 100644
--- a/embassy-rp/Cargo.toml
+++ b/embassy-rp/Cargo.toml
@@ -1,6 +1,6 @@
1[package] 1[package]
2name = "embassy-rp" 2name = "embassy-rp"
3version = "0.7.0" 3version = "0.8.0"
4edition = "2021" 4edition = "2021"
5license = "MIT OR Apache-2.0" 5license = "MIT OR Apache-2.0"
6description = "Embassy Hardware Abstraction Layer (HAL) for the Raspberry Pi RP2040 or RP235x microcontroller" 6description = "Embassy Hardware Abstraction Layer (HAL) for the Raspberry Pi RP2040 or RP235x microcontroller"
@@ -147,13 +147,13 @@ _test = []
147binary-info = ["rt", "dep:rp-binary-info", "rp-binary-info?/binary-info"] 147binary-info = ["rt", "dep:rp-binary-info", "rp-binary-info?/binary-info"]
148 148
149[dependencies] 149[dependencies]
150embassy-sync = { version = "0.7.1", path = "../embassy-sync" } 150embassy-sync = { version = "0.7.2", path = "../embassy-sync" }
151embassy-time-driver = { version = "0.2", path = "../embassy-time-driver", optional = true } 151embassy-time-driver = { version = "0.2.1", path = "../embassy-time-driver", optional = true }
152embassy-time-queue-utils = { version = "0.2", path = "../embassy-time-queue-utils", optional = true } 152embassy-time-queue-utils = { version = "0.3.0", path = "../embassy-time-queue-utils", optional = true }
153embassy-time = { version = "0.4.0", path = "../embassy-time" } 153embassy-time = { version = "0.5.0", path = "../embassy-time" }
154embassy-futures = { version = "0.1.0", path = "../embassy-futures" } 154embassy-futures = { version = "0.1.2", path = "../embassy-futures" }
155embassy-hal-internal = { version = "0.3.0", path = "../embassy-hal-internal", features = ["cortex-m", "prio-bits-2"] } 155embassy-hal-internal = { version = "0.3.0", path = "../embassy-hal-internal", features = ["cortex-m", "prio-bits-2"] }
156embassy-embedded-hal = { version = "0.4.0", path = "../embassy-embedded-hal" } 156embassy-embedded-hal = { version = "0.4.1", path = "../embassy-embedded-hal" }
157embassy-usb-driver = { version = "0.2.0", path = "../embassy-usb-driver" } 157embassy-usb-driver = { version = "0.2.0", path = "../embassy-usb-driver" }
158atomic-polyfill = "1.0.1" 158atomic-polyfill = "1.0.1"
159defmt = { version = "1.0.1", optional = true } 159defmt = { version = "1.0.1", optional = true }
@@ -188,5 +188,5 @@ rp-binary-info = { version = "0.1.0", optional = true }
188smart-leds = "0.4.0" 188smart-leds = "0.4.0"
189 189
190[dev-dependencies] 190[dev-dependencies]
191embassy-executor = { version = "0.8.0", path = "../embassy-executor", features = ["arch-std", "executor-thread"] } 191embassy-executor = { version = "0.9.0", path = "../embassy-executor", features = ["arch-std", "executor-thread"] }
192static_cell = { version = "2" } 192static_cell = { version = "2" }