From 83f2557eacd657070a84a9baf2da6e3aff03b2b7 Mon Sep 17 00:00:00 2001 From: Ulf Lilleengen Date: Tue, 26 Aug 2025 16:04:00 +0200 Subject: chore: prepare embassy crate releases --- embassy-boot/CHANGELOG.md | 2 ++ embassy-boot/Cargo.toml | 6 +++--- 2 files changed, 5 insertions(+), 3 deletions(-) (limited to 'embassy-boot') diff --git a/embassy-boot/CHANGELOG.md b/embassy-boot/CHANGELOG.md index 7042ad14c..8d6395357 100644 --- a/embassy-boot/CHANGELOG.md +++ b/embassy-boot/CHANGELOG.md @@ -8,4 +8,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## Unreleased - ReleaseDate +## 0.6.1 - 2025-08-26 + - First release with changelog. diff --git a/embassy-boot/Cargo.toml b/embassy-boot/Cargo.toml index 632e60c35..e1f539962 100644 --- a/embassy-boot/Cargo.toml +++ b/embassy-boot/Cargo.toml @@ -1,7 +1,7 @@ [package] edition = "2021" name = "embassy-boot" -version = "0.6.0" +version = "0.6.1" 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" @@ -28,8 +28,8 @@ defmt = { version = "1.0.1", optional = true } digest = "0.10" log = { version = "0.4", optional = true } ed25519-dalek = { version = "2", default-features = false, features = ["digest"], optional = true } -embassy-embedded-hal = { version = "0.4.0", path = "../embassy-embedded-hal" } -embassy-sync = { version = "0.7.1", path = "../embassy-sync" } +embassy-embedded-hal = { version = "0.4.1", path = "../embassy-embedded-hal" } +embassy-sync = { version = "0.7.2", path = "../embassy-sync" } embedded-storage = "0.3.1" embedded-storage-async = { version = "0.4.1" } salty = { version = "0.3", optional = true } -- cgit