aboutsummaryrefslogtreecommitdiff
path: root/embassy-boot-nrf
diff options
context:
space:
mode:
authorTimo Kröger <[email protected]>2025-07-21 11:26:01 +0200
committerTimo Kröger <[email protected]>2025-07-21 13:40:36 +0200
commit4c098faef528e18e0b17e540b12487eef9acccbc (patch)
tree92a72bc0eec3dd6be271f72e0ef43ac1b44d50a3 /embassy-boot-nrf
parentde4537d000ffeb8821a58056a99e76bb12c1536e (diff)
chore: Prepare release for `embassy-boot-*` crates
Prepare the bootloader crates for a release with `[email protected]` as dependency for compatiblity with other released crates. `embassy-sync` is used in the public api of `embassy-boot` which is reexported by the `embassy-boot-*` crates. That is why a minor version bump of all crates is required.
Diffstat (limited to 'embassy-boot-nrf')
-rw-r--r--embassy-boot-nrf/Cargo.toml4
1 files changed, 2 insertions, 2 deletions
diff --git a/embassy-boot-nrf/Cargo.toml b/embassy-boot-nrf/Cargo.toml
index 1230cbd3b..81479759c 100644
--- a/embassy-boot-nrf/Cargo.toml
+++ b/embassy-boot-nrf/Cargo.toml
@@ -1,7 +1,7 @@
1[package] 1[package]
2edition = "2021" 2edition = "2021"
3name = "embassy-boot-nrf" 3name = "embassy-boot-nrf"
4version = "0.5.0" 4version = "0.6.0"
5description = "Bootloader lib for nRF chips" 5description = "Bootloader lib for nRF chips"
6license = "MIT OR Apache-2.0" 6license = "MIT OR Apache-2.0"
7repository = "https://github.com/embassy-rs/embassy" 7repository = "https://github.com/embassy-rs/embassy"
@@ -26,7 +26,7 @@ log = { version = "0.4.17", optional = true }
26 26
27embassy-sync = { version = "0.7.0", path = "../embassy-sync" } 27embassy-sync = { version = "0.7.0", path = "../embassy-sync" }
28embassy-nrf = { version = "0.5.0", path = "../embassy-nrf", default-features = false } 28embassy-nrf = { version = "0.5.0", path = "../embassy-nrf", default-features = false }
29embassy-boot = { version = "0.4.0", path = "../embassy-boot" } 29embassy-boot = { version = "0.5.0", path = "../embassy-boot" }
30cortex-m = { version = "0.7.6" } 30cortex-m = { version = "0.7.6" }
31cortex-m-rt = { version = "0.7" } 31cortex-m-rt = { version = "0.7" }
32embedded-storage = "0.3.1" 32embedded-storage = "0.3.1"