mirror of
https://github.com/embassy-rs/embassy.git
synced 2024-11-21 14:22:33 +00:00
Add a CHANGELOG to embassy-usb-logger and bump its version
This commit is contained in:
parent
b33ef0d7dd
commit
b843f2546f
28
embassy-usb-logger/CHANGELOG.md
Normal file
28
embassy-usb-logger/CHANGELOG.md
Normal file
@ -0,0 +1,28 @@
|
|||||||
|
# Changelog
|
||||||
|
|
||||||
|
All notable changes to this project will be documented in this file.
|
||||||
|
|
||||||
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
||||||
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||||
|
|
||||||
|
## Unreleased
|
||||||
|
|
||||||
|
## 0.2.0 - 2024-05-20
|
||||||
|
|
||||||
|
### Added
|
||||||
|
|
||||||
|
- [#2414](https://github.com/embassy-rs/embassy/pull/2414) USB logger can now use an existing USB device (@JomerDev)
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
|
||||||
|
- Update `embassy-usb` to 0.2.0
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
|
||||||
|
- No more data loss at `Pipe` wraparound
|
||||||
|
- [#2414](https://github.com/embassy-rs/embassy/pull/2414) Messages that are exactly `MAX_PACKET_SIZE` long are no
|
||||||
|
longer delayed (@JomerDev)
|
||||||
|
|
||||||
|
## 0.1.0 - 2024-01-14
|
||||||
|
|
||||||
|
- Initial Release
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "embassy-usb-logger"
|
name = "embassy-usb-logger"
|
||||||
version = "0.1.0"
|
version = "0.2.0"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
license = "MIT OR Apache-2.0"
|
license = "MIT OR Apache-2.0"
|
||||||
description = "`log` implementation for USB serial using `embassy-usb`."
|
description = "`log` implementation for USB serial using `embassy-usb`."
|
||||||
|
@ -15,7 +15,7 @@ embassy-usb = { version = "0.2.0", path = "../../embassy-usb", features = ["defm
|
|||||||
embassy-net = { version = "0.4.0", path = "../../embassy-net", features = ["defmt", "tcp", "udp", "raw", "dhcpv4", "medium-ethernet"] }
|
embassy-net = { version = "0.4.0", path = "../../embassy-net", features = ["defmt", "tcp", "udp", "raw", "dhcpv4", "medium-ethernet"] }
|
||||||
embassy-net-wiznet = { version = "0.1.0", path = "../../embassy-net-wiznet", features = ["defmt"] }
|
embassy-net-wiznet = { version = "0.1.0", path = "../../embassy-net-wiznet", features = ["defmt"] }
|
||||||
embassy-futures = { version = "0.1.0", path = "../../embassy-futures" }
|
embassy-futures = { version = "0.1.0", path = "../../embassy-futures" }
|
||||||
embassy-usb-logger = { version = "0.1.0", path = "../../embassy-usb-logger" }
|
embassy-usb-logger = { version = "0.2.0", path = "../../embassy-usb-logger" }
|
||||||
cyw43 = { version = "0.1.0", path = "../../cyw43", features = ["defmt", "firmware-logs"] }
|
cyw43 = { version = "0.1.0", path = "../../cyw43", features = ["defmt", "firmware-logs"] }
|
||||||
cyw43-pio = { version = "0.1.0", path = "../../cyw43-pio", features = ["defmt", "overclock"] }
|
cyw43-pio = { version = "0.1.0", path = "../../cyw43-pio", features = ["defmt", "overclock"] }
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user