aboutsummaryrefslogtreecommitdiff
path: root/embassy-usb-dfu
diff options
context:
space:
mode:
Diffstat (limited to 'embassy-usb-dfu')
-rw-r--r--embassy-usb-dfu/CHANGELOG.md2
-rw-r--r--embassy-usb-dfu/Cargo.toml12
2 files changed, 8 insertions, 6 deletions
diff --git a/embassy-usb-dfu/CHANGELOG.md b/embassy-usb-dfu/CHANGELOG.md
index 7042ad14c..9a399c5c7 100644
--- a/embassy-usb-dfu/CHANGELOG.md
+++ b/embassy-usb-dfu/CHANGELOG.md
@@ -8,4 +8,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
8<!-- next-header --> 8<!-- next-header -->
9## Unreleased - ReleaseDate 9## Unreleased - ReleaseDate
10 10
11## 0.1.1 - 2025-08-26
12
11- First release with changelog. 13- First release with changelog.
diff --git a/embassy-usb-dfu/Cargo.toml b/embassy-usb-dfu/Cargo.toml
index ce2f80b31..1bf39641f 100644
--- a/embassy-usb-dfu/Cargo.toml
+++ b/embassy-usb-dfu/Cargo.toml
@@ -1,7 +1,7 @@
1[package] 1[package]
2edition = "2021" 2edition = "2021"
3name = "embassy-usb-dfu" 3name = "embassy-usb-dfu"
4version = "0.1.0" 4version = "0.1.1"
5description = "An implementation of the USB DFU 1.1 protocol, using embassy-boot" 5description = "An implementation of the USB DFU 1.1 protocol, using embassy-boot"
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"
@@ -37,11 +37,11 @@ log = { version = "0.4.17", optional = true }
37 37
38bitflags = "2.4.1" 38bitflags = "2.4.1"
39cortex-m = { version = "0.7.7", features = ["inline-asm"], optional = true } 39cortex-m = { version = "0.7.7", features = ["inline-asm"], optional = true }
40embassy-boot = { version = "0.6.0", path = "../embassy-boot" } 40embassy-boot = { version = "0.6.1", path = "../embassy-boot" }
41embassy-futures = { version = "0.1.1", path = "../embassy-futures" } 41embassy-futures = { version = "0.1.2", path = "../embassy-futures" }
42embassy-sync = { version = "0.7.1", path = "../embassy-sync" } 42embassy-sync = { version = "0.7.2", path = "../embassy-sync" }
43embassy-time = { version = "0.4.0", path = "../embassy-time" } 43embassy-time = { version = "0.5.0", path = "../embassy-time" }
44embassy-usb = { version = "0.5.0", path = "../embassy-usb", default-features = false } 44embassy-usb = { version = "0.5.1", path = "../embassy-usb", default-features = false }
45embedded-storage = { version = "0.3.1" } 45embedded-storage = { version = "0.3.1" }
46esp32c3-hal = { version = "0.13.0", optional = true, default-features = false } 46esp32c3-hal = { version = "0.13.0", optional = true, default-features = false }
47 47