From 0ba74a4127a244781fc125208a73cc51c8a0deac Mon Sep 17 00:00:00 2001 From: Ulf Lilleengen Date: Tue, 30 Sep 2025 10:31:33 +0200 Subject: chore: prepare crate releases --- embassy-boot-nrf/CHANGELOG.md | 4 ++++ embassy-boot-nrf/Cargo.toml | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) (limited to 'embassy-boot-nrf') diff --git a/embassy-boot-nrf/CHANGELOG.md b/embassy-boot-nrf/CHANGELOG.md index 8cc1e73c0..54b7c8067 100644 --- a/embassy-boot-nrf/CHANGELOG.md +++ b/embassy-boot-nrf/CHANGELOG.md @@ -8,6 +8,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## Unreleased - ReleaseDate +## 0.9.0 - 2025-09-30 + +- Bumped embassy-nrf to 0.8.0 + ## 0.8.0 - 2025-08-26 ## 0.1.1 - 2025-08-15 diff --git a/embassy-boot-nrf/Cargo.toml b/embassy-boot-nrf/Cargo.toml index 49dff061a..466f18631 100644 --- a/embassy-boot-nrf/Cargo.toml +++ b/embassy-boot-nrf/Cargo.toml @@ -1,7 +1,7 @@ [package] edition = "2021" name = "embassy-boot-nrf" -version = "0.8.0" +version = "0.9.0" description = "Bootloader lib for nRF chips" license = "MIT OR Apache-2.0" repository = "https://github.com/embassy-rs/embassy" @@ -36,7 +36,7 @@ defmt = { version = "1.0.1", optional = true } log = { version = "0.4.17", optional = true } embassy-sync = { version = "0.7.2", path = "../embassy-sync" } -embassy-nrf = { version = "0.7.0", path = "../embassy-nrf", default-features = false } +embassy-nrf = { version = "0.8.0", path = "../embassy-nrf", default-features = false } embassy-boot = { version = "0.6.1", path = "../embassy-boot" } cortex-m = { version = "0.7.6" } cortex-m-rt = { version = "0.7" } -- cgit