Finalize crates for release (#3603)

This commit is contained in:
Scott Mabin 2025-06-05 15:25:01 +01:00 committed by GitHub
parent 8644f9b928
commit d34aab3ecd
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 22 additions and 7 deletions

View File

@ -15,11 +15,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Fixed
- Fixed a potential lockup issue (#3589)
### Removed
## [v0.8.1] - 2025-06-05
### Fixed
- Fixed a potential lockup issue (#3589)
## [v0.8.0] - 2025-06-03
### Added
@ -122,4 +127,5 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
[0.7.0]: https://github.com/esp-rs/esp-hal/releases/tag/esp-hal-embassy-v0.7.0
[v0.8.0]: https://github.com/esp-rs/esp-hal/compare/esp-hal-embassy-v0.7.0...esp-hal-embassy-v0.8.0
[Unreleased]: https://github.com/esp-rs/esp-hal/compare/esp-hal-embassy-v0.8.0...HEAD
[v0.8.1]: https://github.com/esp-rs/esp-hal/compare/esp-hal-embassy-v0.8.0...esp-hal-embassy-v0.8.1
[Unreleased]: https://github.com/esp-rs/esp-hal/compare/esp-hal-embassy-v0.8.1...HEAD

View File

@ -1,6 +1,6 @@
[package]
name = "esp-hal-embassy"
version = "0.8.0"
version = "0.8.1"
edition = "2024"
rust-version = "1.86.0"
description = "Embassy support for esp-hal"

View File

@ -9,18 +9,26 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Added
- It's now possible to obtain the RSSI of the currently connected AP, by using `WifiController::rssi(&self)` (#3593)
### Changed
### Fixed
- Fix a compilation error for ESP32 + coex + ble + defmt (#3596)
### Removed
## [v0.14.1] - 2025-06-05
### Added
- It's now possible to obtain the RSSI of the currently connected AP, by using `WifiController::rssi(&self)` (#3593)
### Fixed
- Fix a compilation error for ESP32 + coex + ble + defmt (#3596)
## [v0.14.0] - 2025-06-03
### Added
@ -256,4 +264,5 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
[0.13.0]: https://github.com/esp-rs/esp-hal/releases/tag/esp-wifi-v0.13.0
[v0.14.0]: https://github.com/esp-rs/esp-hal/compare/esp-wifi-v0.13.0...esp-wifi-v0.14.0
[Unreleased]: https://github.com/esp-rs/esp-hal/compare/esp-wifi-v0.14.0...HEAD
[v0.14.1]: https://github.com/esp-rs/esp-hal/compare/esp-wifi-v0.14.0...esp-wifi-v0.14.1
[Unreleased]: https://github.com/esp-rs/esp-hal/compare/esp-wifi-v0.14.1...HEAD

View File

@ -1,6 +1,6 @@
[package]
name = "esp-wifi"
version = "0.14.0"
version = "0.14.1"
edition = "2024"
rust-version = "1.86.0"
description = "A WiFi, Bluetooth and ESP-NOW driver for use with Espressif chips and bare-metal Rust"