chore: Prepare release for embassy-boot-* crates

Prepare the bootloader crates for a release with `embassy-sync@0.7.0`
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.
This commit is contained in:
Timo Kröger 2025-07-21 11:26:01 +02:00
parent de4537d000
commit 4c098faef5
4 changed files with 7 additions and 7 deletions

View File

@ -1,7 +1,7 @@
[package]
edition = "2021"
name = "embassy-boot-nrf"
version = "0.5.0"
version = "0.6.0"
description = "Bootloader lib for nRF chips"
license = "MIT OR Apache-2.0"
repository = "https://github.com/embassy-rs/embassy"
@ -26,7 +26,7 @@ log = { version = "0.4.17", optional = true }
embassy-sync = { version = "0.7.0", path = "../embassy-sync" }
embassy-nrf = { version = "0.5.0", path = "../embassy-nrf", default-features = false }
embassy-boot = { version = "0.4.0", path = "../embassy-boot" }
embassy-boot = { version = "0.5.0", path = "../embassy-boot" }
cortex-m = { version = "0.7.6" }
cortex-m-rt = { version = "0.7" }
embedded-storage = "0.3.1"

View File

@ -1,7 +1,7 @@
[package]
edition = "2021"
name = "embassy-boot-rp"
version = "0.5.0"
version = "0.6.0"
description = "Bootloader lib for RP2040 chips"
license = "MIT OR Apache-2.0"
repository = "https://github.com/embassy-rs/embassy"
@ -26,7 +26,7 @@ log = { version = "0.4", optional = true }
embassy-sync = { version = "0.7.0", path = "../embassy-sync" }
embassy-rp = { version = "0.6.0", path = "../embassy-rp", default-features = false }
embassy-boot = { version = "0.4.0", path = "../embassy-boot" }
embassy-boot = { version = "0.5.0", path = "../embassy-boot" }
embassy-time = { version = "0.4.0", path = "../embassy-time" }
cortex-m = { version = "0.7.6" }

View File

@ -1,7 +1,7 @@
[package]
edition = "2021"
name = "embassy-boot-stm32"
version = "0.3.0"
version = "0.4.0"
description = "Bootloader lib for STM32 chips"
license = "MIT OR Apache-2.0"
repository = "https://github.com/embassy-rs/embassy"
@ -26,7 +26,7 @@ log = { version = "0.4", optional = true }
embassy-sync = { version = "0.7.0", path = "../embassy-sync" }
embassy-stm32 = { version = "0.2.0", path = "../embassy-stm32", default-features = false }
embassy-boot = { version = "0.4.0", path = "../embassy-boot" }
embassy-boot = { version = "0.5.0", path = "../embassy-boot" }
cortex-m = { version = "0.7.6" }
cortex-m-rt = { version = "0.7" }
embedded-storage = "0.3.1"

View File

@ -1,7 +1,7 @@
[package]
edition = "2021"
name = "embassy-boot"
version = "0.4.0"
version = "0.5.0"
description = "A lightweight bootloader supporting firmware updates in a power-fail-safe way, with trial boots and rollbacks."
license = "MIT OR Apache-2.0"
repository = "https://github.com/embassy-rs/embassy"