aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDario Nieuwenhuis <[email protected]>2024-05-20 15:50:37 +0200
committerGitHub <[email protected]>2024-05-20 15:50:37 +0200
commitdaaaf50298144a245d026e70f4fa3c6eb856276a (patch)
tree144110016730aeb6aaebafd2c9d0255fa4cb6278
parentb33ef0d7dd4eb9124626ca5242cab57906b3007c (diff)
parentb843f2546f0cb1a8595d390587f38012b8a013a4 (diff)
Merge pull request #2967 from si14/si14/embassy-usb-logger-release
Add a CHANGELOG to embassy-usb-logger and bump its version
-rw-r--r--embassy-usb-logger/CHANGELOG.md28
-rw-r--r--embassy-usb-logger/Cargo.toml2
-rw-r--r--examples/rp/Cargo.toml2
3 files changed, 30 insertions, 2 deletions
diff --git a/embassy-usb-logger/CHANGELOG.md b/embassy-usb-logger/CHANGELOG.md
new file mode 100644
index 000000000..4cd84b8be
--- /dev/null
+++ b/embassy-usb-logger/CHANGELOG.md
@@ -0,0 +1,28 @@
1# Changelog
2
3All notable changes to this project will be documented in this file.
4
5The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
8## Unreleased
9
10## 0.2.0 - 2024-05-20
11
12### Added
13
14- [#2414](https://github.com/embassy-rs/embassy/pull/2414) USB logger can now use an existing USB device (@JomerDev)
15
16### Changed
17
18- Update `embassy-usb` to 0.2.0
19
20### Fixed
21
22- No more data loss at `Pipe` wraparound
23- [#2414](https://github.com/embassy-rs/embassy/pull/2414) Messages that are exactly `MAX_PACKET_SIZE` long are no
24longer delayed (@JomerDev)
25
26## 0.1.0 - 2024-01-14
27
28- Initial Release
diff --git a/embassy-usb-logger/Cargo.toml b/embassy-usb-logger/Cargo.toml
index 81bcfc0da..d58fd7a34 100644
--- a/embassy-usb-logger/Cargo.toml
+++ b/embassy-usb-logger/Cargo.toml
@@ -1,6 +1,6 @@
1[package] 1[package]
2name = "embassy-usb-logger" 2name = "embassy-usb-logger"
3version = "0.1.0" 3version = "0.2.0"
4edition = "2021" 4edition = "2021"
5license = "MIT OR Apache-2.0" 5license = "MIT OR Apache-2.0"
6description = "`log` implementation for USB serial using `embassy-usb`." 6description = "`log` implementation for USB serial using `embassy-usb`."
diff --git a/examples/rp/Cargo.toml b/examples/rp/Cargo.toml
index 73d19c28b..5178a690f 100644
--- a/examples/rp/Cargo.toml
+++ b/examples/rp/Cargo.toml
@@ -15,7 +15,7 @@ embassy-usb = { version = "0.2.0", path = "../../embassy-usb", features = ["defm
15embassy-net = { version = "0.4.0", path = "../../embassy-net", features = ["defmt", "tcp", "udp", "raw", "dhcpv4", "medium-ethernet"] } 15embassy-net = { version = "0.4.0", path = "../../embassy-net", features = ["defmt", "tcp", "udp", "raw", "dhcpv4", "medium-ethernet"] }
16embassy-net-wiznet = { version = "0.1.0", path = "../../embassy-net-wiznet", features = ["defmt"] } 16embassy-net-wiznet = { version = "0.1.0", path = "../../embassy-net-wiznet", features = ["defmt"] }
17embassy-futures = { version = "0.1.0", path = "../../embassy-futures" } 17embassy-futures = { version = "0.1.0", path = "../../embassy-futures" }
18embassy-usb-logger = { version = "0.1.0", path = "../../embassy-usb-logger" } 18embassy-usb-logger = { version = "0.2.0", path = "../../embassy-usb-logger" }
19cyw43 = { version = "0.1.0", path = "../../cyw43", features = ["defmt", "firmware-logs"] } 19cyw43 = { version = "0.1.0", path = "../../cyw43", features = ["defmt", "firmware-logs"] }
20cyw43-pio = { version = "0.1.0", path = "../../cyw43-pio", features = ["defmt", "overclock"] } 20cyw43-pio = { version = "0.1.0", path = "../../cyw43-pio", features = ["defmt", "overclock"] }
21 21