aboutsummaryrefslogtreecommitdiff
path: root/embassy-usb
diff options
context:
space:
mode:
authorUlf Lilleengen <[email protected]>2025-07-16 15:34:59 +0200
committerUlf Lilleengen <[email protected]>2025-07-16 15:35:47 +0200
commitc484e7d0e530d20e1fdfaa4a1578e9321cc8b283 (patch)
treed195d015c5d9661d3824ba8bc97fde03b9744258 /embassy-usb
parent7abbdb6970e8448d8569da24c37f68ccb75bb8c4 (diff)
chore: Release embassy-usb version 0.5.0
Diffstat (limited to 'embassy-usb')
-rw-r--r--embassy-usb/CHANGELOG.md3
-rw-r--r--embassy-usb/Cargo.toml2
2 files changed, 4 insertions, 1 deletions
diff --git a/embassy-usb/CHANGELOG.md b/embassy-usb/CHANGELOG.md
index 51db5f03e..3ee75e226 100644
--- a/embassy-usb/CHANGELOG.md
+++ b/embassy-usb/CHANGELOG.md
@@ -8,12 +8,15 @@ 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.5.0 - 2025-07-16
12
11- `UAC1`: unmute by default ([#3992](https://github.com/embassy-rs/embassy/pull/3992)) 13- `UAC1`: unmute by default ([#3992](https://github.com/embassy-rs/embassy/pull/3992))
12- `cdc_acm`: `State::new` is now `const` ([#4000](https://github.com/embassy-rs/embassy/pull/4000)) 14- `cdc_acm`: `State::new` is now `const` ([#4000](https://github.com/embassy-rs/embassy/pull/4000))
13- Add support for CMSIS-DAP v2 USB class ([#4107](https://github.com/embassy-rs/embassy/pull/4107)) 15- Add support for CMSIS-DAP v2 USB class ([#4107](https://github.com/embassy-rs/embassy/pull/4107))
14- Reduce `UsbDevice` builder logs to `trace` ([#4130](https://github.com/embassy-rs/embassy/pull/4130)) 16- Reduce `UsbDevice` builder logs to `trace` ([#4130](https://github.com/embassy-rs/embassy/pull/4130))
15- Implement `embedded-io-async` traits for USB CDC ACM ([#4176](https://github.com/embassy-rs/embassy/pull/4176)) 17- Implement `embedded-io-async` traits for USB CDC ACM ([#4176](https://github.com/embassy-rs/embassy/pull/4176))
16- Update `embassy-sync` to v0.7.0 18- Update `embassy-sync` to v0.7.0
19- Fix CDC ACM BufferedReceiver buffer calculation
17 20
18## 0.4.0 - 2025-01-15 21## 0.4.0 - 2025-01-15
19 22
diff --git a/embassy-usb/Cargo.toml b/embassy-usb/Cargo.toml
index e706bec13..1f90f84ad 100644
--- a/embassy-usb/Cargo.toml
+++ b/embassy-usb/Cargo.toml
@@ -1,6 +1,6 @@
1[package] 1[package]
2name = "embassy-usb" 2name = "embassy-usb"
3version = "0.4.0" 3version = "0.5.0"
4edition = "2021" 4edition = "2021"
5license = "MIT OR Apache-2.0" 5license = "MIT OR Apache-2.0"
6description = "Async USB device stack for embedded devices in Rust." 6description = "Async USB device stack for embedded devices in Rust."