New package releases (#2959)

* Fix some styling issues in top-level README.md

* Update package dependencies and bump version numbers

* Update each `CHANGELOG.md` file for packages to be published

* Update `esp-hal` migration guide

* Fix typo in `esp-hal` changelog
This commit is contained in:
Jesse Braham 2025-01-15 12:37:36 +01:00 committed by GitHub
parent 240f79021d
commit 59a2c17a52
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
30 changed files with 222 additions and 140 deletions

View File

@ -1,15 +1,17 @@
<center>
<p align="center">
<img src="./resources/esp-rs.svg" alt="esp-rs logo" width="100px" />
</p>
![esp-rs Logo](./resources/esp-rs.svg)
<h1 align="center">esp-hal</h1>
# esp-hal
![GitHub Actions Workflow Status](https://img.shields.io/github/actions/workflow/status/esp-rs/esp-hal/ci.yml?labelColor=1C2C2E&label=CI&logo=github&style=flat-square)
![GitHub Actions Workflow Status](https://img.shields.io/github/actions/workflow/status/esp-rs/esp-hal/hil.yml?labelColor=1C2C2E&label=HIL&logo=github&style=flat-square&event=merge_group)
![MIT/Apache-2.0 licensed](https://img.shields.io/badge/license-MIT%2FApache--2.0-blue?labelColor=1C2C2E&style=flat-square)
[![Matrix](https://img.shields.io/matrix/esp-rs:matrix.org?labelColor=1C2C2E&label=join%20matrix&color=BEC5C9&logo=matrix&style=flat-square)](https://matrix.to/#/#esp-rs:matrix.org)
</center>
<p align="center">
<img src="https://img.shields.io/github/actions/workflow/status/esp-rs/esp-hal/ci.yml?labelColor=1C2C2E&label=CI&logo=github&style=flat-square" alt="GitHub Actions Workflow Status" />
<img src="https://img.shields.io/github/actions/workflow/status/esp-rs/esp-hal/hil.yml?labelColor=1C2C2E&label=HIL&logo=github&style=flat-square&event=merge_group" alt="GitHub Actions Workflow Status" />
<img src="https://img.shields.io/badge/license-MIT%2FApache--2.0-blue?labelColor=1C2C2E&style=flat-square" alt="MIT/Apache-2.0 licensed" />
<a href="https://matrix.to/#/#esp-rs:matrix.org">
<img src="https://img.shields.io/matrix/esp-rs:matrix.org?labelColor=1C2C2E&label=join%20matrix&color=BEC5C9&logo=matrix&style=flat-square" alt="Matrix" />
</a>
</p>
Bare-metal (`no_std`) hardware abstraction layer for Espressif devices. Currently supports, to varying degrees, the following devices:

View File

@ -9,16 +9,22 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Added
### Changed
### Fixed
### Removed
## 0.6.0 - 2025-01-15
### Added
- `esp_alloc::HEAP.stats()` can now be used to get heap usage informations (#2137)
### Changed
- Bump MSRV to 1.84 (#2951)
### Fixed
### Removed
## 0.5.0 - 2024-10-10
### Changed
@ -35,4 +41,4 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## 0.1.0 - 2022-07-25
[Unreleased]: https://github.com/esp-rs/esp-hal/commits/main/esp-alloc?since=2024-10-10
[Unreleased]: https://github.com/esp-rs/esp-hal/commits/main/esp-alloc?since=2025-01-15

View File

@ -1,6 +1,6 @@
[package]
name = "esp-alloc"
version = "0.5.0"
version = "0.6.0"
edition = "2021"
rust-version = "1.84.0"
description = "A heap allocator for Espressif devices"
@ -14,9 +14,9 @@ default-target = "riscv32imc-unknown-none-elf"
features = ["nightly"]
[dependencies]
defmt = { version = "0.3.8", optional = true }
defmt = { version = "0.3.10", optional = true }
cfg-if = "1.0.0"
critical-section = "1.1.3"
critical-section = "1.2.0"
enumset = "1.1.5"
linked_list_allocator = { version = "0.10.5", default-features = false, features = ["const_mut_refs"] }
document-features = "0.2.10"

View File

@ -11,12 +11,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Changed
- Bump MSRV to 1.84 (#2951)
### Fixed
### Removed
## 0.15.0 - 2025-01-15
### Changed
- Bump MSRV to 1.84 (#2951)
## 0.14.2 - 2024-10-10
### Fixed
@ -62,4 +66,4 @@ No changes - published to avoid conflicts with `esp-println`
- Fix compilation for nightly after 2024-06-12. (#1681)
- Only prints float registers on targets which have them. (#1690)
[Unreleased]: https://github.com/esp-rs/esp-hal/commits/main/esp-backtrace?since=2024-10-10
[Unreleased]: https://github.com/esp-rs/esp-hal/commits/main/esp-backtrace?since=2025-01-15

View File

@ -1,6 +1,6 @@
[package]
name = "esp-backtrace"
version = "0.14.2"
version = "0.15.0"
edition = "2021"
rust-version = "1.84.0"
description = "Bare-metal backtrace support for Espressif devices"
@ -14,12 +14,12 @@ default-target = "riscv32imc-unknown-none-elf"
features = ["esp32c3", "panic-handler", "exception-handler", "println", "esp-println/uart"]
[dependencies]
defmt = { version = "0.3.8", optional = true }
esp-println = { version = "0.12.0", optional = true, default-features = false, path = "../esp-println" }
semihosting = { version = "0.1.15", optional = true }
defmt = { version = "0.3.10", optional = true }
esp-println = { version = "0.13.0", optional = true, default-features = false, path = "../esp-println" }
semihosting = { version = "0.1.18", optional = true }
[build-dependencies]
esp-build = { version = "0.1.0", path = "../esp-build" }
esp-build = { version = "0.2.0", path = "../esp-build" }
[features]
default = ["colors"]

View File

@ -9,17 +9,21 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Added
### Changed
### Fixed
### Removed
## 0.2.0 - 2025-01-15
### Changed
- Use `panic` instead of `process::exit` in esp-build (#2402 )
- Bump MSRV to 1.84 (#2951)
### Removed
## [0.1.0] - 2024-04-17
- Initial release
[Unreleased]: https://github.com/esp-rs/esp-hal/commits/main/esp-build?since=2024-04-17
[Unreleased]: https://github.com/esp-rs/esp-hal/commits/main/esp-build?since=2025-01-15

View File

@ -1,6 +1,6 @@
[package]
name = "esp-build"
version = "0.1.0"
version = "0.2.0"
edition = "2021"
rust-version = "1.84.0"
description = "Build utilities for esp-hal"
@ -11,6 +11,6 @@ license = "MIT OR Apache-2.0"
proc-macro = true
[dependencies]
quote = "1.0.37"
syn = { version = "2.0.79", features = ["fold", "full"] }
quote = "1.0.38"
syn = { version = "2.0.96", features = ["fold", "full"] }
termcolor = "1.4.1"

View File

@ -9,6 +9,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Added
### Changed
### Fixed
### Removed
## 0.3.0 - 2025-01-15
### Fixed
- Users no longer have to manually import `esp_config_int_parse`. (#2630)
@ -18,8 +26,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Crate prefixes and configuration keys are now separated by `_CONFIG_` (#2848)
- Bump MSRV to 1.84 (#2951)
### Removed
## 0.2.0 - 2024-11-20
### Added
@ -30,4 +36,4 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Initial release
[Unreleased]: https://github.com/esp-rs/esp-hal/commits/main/esp-config?since=2024-11-20
[Unreleased]: https://github.com/esp-rs/esp-hal/commits/main/esp-config?since=2025-01-15

View File

@ -1,6 +1,6 @@
[package]
name = "esp-config"
version = "0.2.0"
version = "0.3.0"
edition = "2021"
rust-version = "1.84.0"
description = "Configure projects using esp-hal and related packages"

View File

@ -9,6 +9,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Added
### Changed
### Fixed
### Removed
## 0.6.0 - 2025-01-15
### Added
- Added `ESP_HAL_EMBASSY_CONFIG_TIMER_QUEUE` (#2701)
- Added `ESP_HAL_EMBASSY_CONFIG_GENERIC_QUEUE_SIZE` instead of using `embassy-time/generic-queue-*` (#2701)
@ -78,4 +88,4 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## 0.1.0 - 2024-06-04
[Unreleased]: https://github.com/esp-rs/esp-hal/commits/main/esp-hal-embassy?since=2024-11-20
[Unreleased]: https://github.com/esp-rs/esp-hal/commits/main/esp-hal-embassy?since=2025-01-15

View File

@ -1,6 +1,6 @@
[package]
name = "esp-hal-embassy"
version = "0.5.0"
version = "0.6.0"
edition = "2021"
rust-version = "1.84.0"
description = "Embassy support for esp-hal"
@ -15,24 +15,24 @@ features = ["esp32c6"]
[dependencies]
critical-section = "1.2.0"
defmt = { version = "0.3.8", optional = true }
defmt = { version = "0.3.10", optional = true }
document-features = "0.2.10"
embassy-executor = { version = "0.7.0", features = ["timer-item-payload-size-4"], optional = true }
embassy-sync = { version = "0.6.1" }
embassy-time = { version = "0.4.0" }
embassy-time-driver = { version = "0.2.0", features = [ "tick-hz-1_000_000" ] }
embassy-time-queue-utils = { version = "0.1.0", features = ["_generic-queue"] }
esp-config = { version = "0.2.0", path = "../esp-config" }
esp-hal = { version = "0.22.0", path = "../esp-hal" }
log = { version = "0.4.22", optional = true }
macros = { version = "0.15.0", features = ["embassy"], package = "esp-hal-procmacros", path = "../esp-hal-procmacros" }
portable-atomic = "1.9.0"
esp-config = { version = "0.3.0", path = "../esp-config" }
esp-hal = { version = "0.23.0", path = "../esp-hal" }
log = { version = "0.4.25", optional = true }
macros = { version = "0.16.0", features = ["embassy"], package = "esp-hal-procmacros", path = "../esp-hal-procmacros" }
portable-atomic = "1.10.0"
static_cell = "2.1.0"
[build-dependencies]
esp-build = { version = "0.1.0", path = "../esp-build" }
esp-config = { version = "0.2.0", path = "../esp-config", features = ["build"] }
esp-metadata = { version = "0.4.0", path = "../esp-metadata" }
esp-build = { version = "0.2.0", path = "../esp-build" }
esp-config = { version = "0.3.0", path = "../esp-config", features = ["build"] }
esp-metadata = { version = "0.5.0", path = "../esp-metadata" }
[features]
default = ["executors"]

View File

@ -9,10 +9,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Added
- Added the `BuilderLite` derive macro which implements the Builder Lite pattern for a struct (#2614)
### Changed
### Fixed
### Removed
## 0.16.0 - 2025-01-15
### Added
- Added the `BuilderLite` derive macro which implements the Builder Lite pattern for a struct (#2614)
### Changed
- Functions marked with `#[handler]` can now be referenced in `const` context. (#2559)
@ -58,4 +66,4 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Initial release
[Unreleased]: https://github.com/esp-rs/esp-hal/commits/main/esp-hal-procmacros?since=2024-11-20
[Unreleased]: https://github.com/esp-rs/esp-hal/commits/main/esp-hal-procmacros?since=2025-01-15

View File

@ -1,6 +1,6 @@
[package]
name = "esp-hal-procmacros"
version = "0.15.0"
version = "0.16.0"
edition = "2021"
rust-version = "1.84.0"
description = "Procedural macros for esp-hal"
@ -17,7 +17,7 @@ proc-macro = true
darling = "0.20.10"
document-features = "0.2.10"
litrs = "0.4.1"
object = { version = "0.36.5", default-features = false, features = ["read_core", "elf"], optional = true }
object = { version = "0.36.7", default-features = false, features = ["read_core", "elf"], optional = true }
proc-macro-crate = "3.2.0"
proc-macro-error2 = "2.0.1"
proc-macro2 = "1.0.93"

View File

@ -9,6 +9,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Added
### Changed
### Fixed
### Removed
## [0.23.0] - 2025-01-15
### Added
- ESP32-S3: Added SDMMC signals (#2556)
- Added `set_priority` to the `DmaChannel` trait on GDMA devices (#2403, #2526)
- Added `into_async` and `into_blocking` functions for `ParlIoTxOnly`, `ParlIoRxOnly` (#2526)
@ -134,10 +144,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Removed `embedded-hal 0.2.x` impls and deps from `esp-hal` (#2593)
- Removed `Camera::set_` functions (#2610)
- `DmaTxBuf::{compute_chunk_size, compute_descriptor_count, new_with_block_size}` (#2543)
- The `prelude` module has been removed (#2845)
- SPI: Removed `pub fn read_byte` and `pub fn write_byte` (#2915)
- Removed all peripheral instance type parameters and `new_typed` constructors (#2907)
## [0.22.0] - 2024-11-20
@ -1060,7 +1068,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [0.1.0] - 2022-08-05
[Unreleased]: https://github.com/esp-rs/esp-hal/compare/v0.22.0...HEAD
[Unreleased]: https://github.com/esp-rs/esp-hal/compare/v0.23.0...HEAD
[0.23.0]: https://github.com/esp-rs/esp-hal/compare/v0.22.0..v0.23.0
[0.22.0]: https://github.com/esp-rs/esp-hal/compare/v0.21.1...v0.22.0
[0.21.1]: https://github.com/esp-rs/esp-hal/compare/v0.21.0...v0.21.1
[0.21.0]: https://github.com/esp-rs/esp-hal/compare/v0.20.1...v0.21.0

View File

@ -1,6 +1,6 @@
[package]
name = "esp-hal"
version = "0.22.0"
version = "0.23.0"
edition = "2021"
rust-version = "1.84.0"
description = "Bare-metal HAL for Espressif devices"
@ -17,13 +17,13 @@ features = ["esp32c6"]
rustdoc-args = ["--cfg", "docsrs"]
[dependencies]
bitflags = "2.6.0"
bytemuck = "1.19.0"
bitflags = "2.8.0"
bytemuck = "1.21.0"
bitfield = "0.17.0"
cfg-if = "1.0.0"
chrono = { version = "0.4.38", default-features = false }
chrono = { version = "0.4.39", default-features = false }
critical-section = "1.2.0"
defmt = { version = "0.3.8", optional = true }
defmt = { version = "0.3.10", optional = true }
delegate = "0.13.2"
digest = { version = "0.10.7", default-features = false, optional = true }
document-features = "0.2.10"
@ -39,15 +39,15 @@ embedded-hal-nb = "1.0.0"
embedded-io = { version = "0.6.1", optional = true }
embedded-io-async = { version = "0.6.1", optional = true }
enumset = "1.1.5"
esp-build = { version = "0.1.0", path = "../esp-build" }
esp-build = { version = "0.2.0", path = "../esp-build" }
esp-synopsys-usb-otg = { version = "0.4.2", optional = true, features = ["fs", "esp32sx"] }
fugit = "0.3.7"
instability = "0.3.6"
log = { version = "0.4.22", optional = true }
instability = "0.3.7"
log = { version = "0.4.25", optional = true }
nb = "1.1.0"
paste = "1.0.15"
portable-atomic = { version = "1.9.0", default-features = false }
procmacros = { version = "0.15.0", package = "esp-hal-procmacros", path = "../esp-hal-procmacros" }
portable-atomic = { version = "1.10.0", default-features = false }
procmacros = { version = "0.16.0", package = "esp-hal-procmacros", path = "../esp-hal-procmacros" }
strum = { version = "0.26.3", default-features = false, features = ["derive"] }
void = { version = "1.0.2", default-features = false }
usb-device = { version = "0.3.2", optional = true }
@ -57,13 +57,13 @@ ufmt-write = "0.1.0"
# IMPORTANT:
# Each supported device MUST have its PAC included below along with a
# corresponding feature.
esp32 = { version = "0.34.0", features = ["critical-section", "rt"], git = "https://github.com/esp-rs/esp-pacs", rev = "207964207e83c413ee495ea0545d4f89c04eefc5", optional = true }
esp32c2 = { version = "0.23.0", features = ["critical-section", "rt"], git = "https://github.com/esp-rs/esp-pacs", rev = "207964207e83c413ee495ea0545d4f89c04eefc5", optional = true }
esp32c3 = { version = "0.26.0", features = ["critical-section", "rt"], git = "https://github.com/esp-rs/esp-pacs", rev = "207964207e83c413ee495ea0545d4f89c04eefc5", optional = true }
esp32c6 = { version = "0.17.0", features = ["critical-section", "rt"], git = "https://github.com/esp-rs/esp-pacs", rev = "207964207e83c413ee495ea0545d4f89c04eefc5", optional = true }
esp32h2 = { version = "0.13.0", features = ["critical-section", "rt"], git = "https://github.com/esp-rs/esp-pacs", rev = "207964207e83c413ee495ea0545d4f89c04eefc5", optional = true }
esp32s2 = { version = "0.25.0", features = ["critical-section", "rt"], git = "https://github.com/esp-rs/esp-pacs", rev = "207964207e83c413ee495ea0545d4f89c04eefc5", optional = true }
esp32s3 = { version = "0.29.0", features = ["critical-section", "rt"], git = "https://github.com/esp-rs/esp-pacs", rev = "207964207e83c413ee495ea0545d4f89c04eefc5", optional = true }
esp32 = { version = "0.35.0", features = ["critical-section", "rt"], optional = true }
esp32c2 = { version = "0.24.0", features = ["critical-section", "rt"], optional = true }
esp32c3 = { version = "0.27.0", features = ["critical-section", "rt"], optional = true }
esp32c6 = { version = "0.18.0", features = ["critical-section", "rt"], optional = true }
esp32h2 = { version = "0.14.0", features = ["critical-section", "rt"], optional = true }
esp32s2 = { version = "0.26.0", features = ["critical-section", "rt"], optional = true }
esp32s3 = { version = "0.30.0", features = ["critical-section", "rt"], optional = true }
[target.'cfg(target_arch = "riscv32")'.dependencies]
riscv = { version = "0.12.1" }
@ -71,20 +71,20 @@ esp-riscv-rt = { version = "0.9.1", path = "../esp-riscv-rt" }
critical-section = { version = "1.2.0", features = ["restore-state-u8"] }
[target.'cfg(target_arch = "xtensa")'.dependencies]
xtensa-lx = { version = "0.9.0", path = "../xtensa-lx" }
xtensa-lx-rt = { version = "0.17.2", path = "../xtensa-lx-rt" }
xtensa-lx = { version = "0.10.0", path = "../xtensa-lx" }
xtensa-lx-rt = { version = "0.18.0", path = "../xtensa-lx-rt" }
critical-section = { version = "1.2.0", features = ["restore-state-u32"] }
[build-dependencies]
basic-toml = "0.1.9"
cfg-if = "1.0.0"
esp-build = { version = "0.1.0", path = "../esp-build" }
esp-metadata = { version = "0.4.0", path = "../esp-metadata" }
esp-config = { version = "0.2.0", path = "../esp-config", features = ["build"] }
serde = { version = "1.0.215", features = ["derive"] }
esp-build = { version = "0.2.0", path = "../esp-build" }
esp-metadata = { version = "0.5.0", path = "../esp-metadata" }
esp-config = { version = "0.3.0", path = "../esp-config", features = ["build"] }
serde = { version = "1.0.217", features = ["derive"] }
[features]
default = ["unstable"] # FIXME: Unstable needs to be disabled before 1.0.0-beta0
default = ["unstable"] # FIXME: Unstable needs to be disabled before 1.0.0-beta.0
bluetooth = []

View File

@ -1,4 +1,4 @@
# Migration Guide from 0.22.x to v1.0.0-beta.0
# Migration Guide from v0.22.x to v0.23.0
Starting with this release, unstable parts of esp-hal will be gated behind the `unstable` feature.
The `unstable` feature itself is unstable, we might change the way we hide APIs without notice.

View File

@ -11,13 +11,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Changed
- Config: Crate prefixes and configuration keys are now separated by `_CONFIG_` (#2848)
- Bump MSRV to 1.84 (#2951)
### Fixed
### Removed
## 0.5.0 - 2025-01-15
### Changed
- Config: Crate prefixes and configuration keys are now separated by `_CONFIG_` (#2848)
- Bump MSRV to 1.84 (#2951)
## 0.4.0 - 2024-11-20
### Removed
@ -61,4 +65,4 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Initial release
[Unreleased]: https://github.com/esp-rs/esp-hal/commits/main/esp-ieee802154?since=2024-11-20
[Unreleased]: https://github.com/esp-rs/esp-hal/commits/main/esp-ieee802154?since=2025-01-15

View File

@ -1,6 +1,6 @@
[package]
name = "esp-ieee802154"
version = "0.4.0"
version = "0.5.0"
edition = "2021"
rust-version = "1.84.0"
description = "Low-level IEEE 802.15.4 driver for the ESP32-C6 and ESP32-H2"
@ -21,17 +21,17 @@ test = false
byte = "0.2.7"
critical-section = "1.2.0"
document-features = "0.2.10"
esp-hal = { version = "0.22.0", path = "../esp-hal" }
esp-hal = { version = "0.23.0", path = "../esp-hal" }
esp-wifi-sys = "0.7.0"
heapless = "0.8.0"
ieee802154 = "0.6.1"
cfg-if = "1.0.0"
esp-config = { version = "0.2.0", path = "../esp-config" }
defmt = { version = "0.3.8", optional = true }
log = { version = "0.4.22", optional = true }
esp-config = { version = "0.3.0", path = "../esp-config" }
defmt = { version = "0.3.10", optional = true }
log = { version = "0.4.25", optional = true }
[build-dependencies]
esp-config = { version = "0.2.0", path = "../esp-config" }
esp-config = { version = "0.3.0", path = "../esp-config" }
[features]

View File

@ -23,14 +23,14 @@ esp32c6-lp = { version = "0.3.0", features = ["critical-section"], option
esp32s2-ulp = { version = "0.3.0", features = ["critical-section"], optional = true }
esp32s3-ulp = { version = "0.3.0", features = ["critical-section"], optional = true }
nb = { version = "1.1.0", optional = true }
procmacros = { version = "0.15.0", package = "esp-hal-procmacros", path = "../esp-hal-procmacros" }
procmacros = { version = "0.16.0", package = "esp-hal-procmacros", path = "../esp-hal-procmacros" }
riscv = { version = "0.11.1", features = ["critical-section-single-hart"] }
[dev-dependencies]
panic-halt = "0.2.0"
[build-dependencies]
esp-build = { version = "0.1.0", path = "../esp-build" }
esp-build = { version = "0.2.0", path = "../esp-build" }
[features]
default = ["embedded-hal"]

View File

@ -9,17 +9,23 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Added
- Introduced the `wifi6` symbol (#2612)
- Introduced the `gpio_bank_1` symbol (#2625)
### Changed
### Fixed
### Removed
## 0.5.0 - 2025-01-15
### Added
- Introduced the `wifi6` symbol (#2612)
- Introduced the `gpio_bank_1` symbol (#2625)
### Changed
- Bump MSRV to 1.84 (#2951)
### Removed
## [0.4.0] - 2024-10-10
## [0.3.0] - 2024-08-29
@ -32,4 +38,4 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Initial release
[Unreleased]: https://github.com/esp-rs/esp-hal/commits/main/esp-metadata?since=2024-10-10
[Unreleased]: https://github.com/esp-rs/esp-hal/commits/main/esp-metadata?since=2025-01-15

View File

@ -1,6 +1,6 @@
[package]
name = "esp-metadata"
version = "0.4.0"
version = "0.5.0"
edition = "2021"
rust-version = "1.84.0"
description = "Metadata for Espressif devices"
@ -8,8 +8,8 @@ repository = "https://github.com/esp-rs/esp-hal"
license = "MIT OR Apache-2.0"
[dependencies]
anyhow = "1.0.89"
clap = { version = "4.5.16", features = ["derive"], optional = true }
anyhow = "1.0.95"
clap = { version = "4.5.26", features = ["derive"], optional = true }
basic-toml = "0.1.9"
serde = { version = "1.0.210", features = ["derive"] }
serde = { version = "1.0.217", features = ["derive"] }
strum = { version = "0.26.3", features = ["derive"] }

View File

@ -11,12 +11,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Changed
- Bump MSRV to 1.84 (#2951)
### Fixed
### Removed
## 0.13.0 - 2025-01-15
### Changed
- Bump MSRV to 1.84 (#2951)
## 0.12.0 - 2024-10-10
### Changed
@ -62,4 +66,4 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Remove RTT and defmt-raw support
[Unreleased]: https://github.com/esp-rs/esp-hal/commits/main/esp-println?since=2024-10-10
[Unreleased]: https://github.com/esp-rs/esp-hal/commits/main/esp-println?since=2025-01-15

View File

@ -1,6 +1,6 @@
[package]
name = "esp-println"
version = "0.12.0"
version = "0.13.0"
edition = "2021"
rust-version = "1.84.0"
description = "Provides `print!` and `println!` implementations various Espressif devices"
@ -16,14 +16,14 @@ default-target = "riscv32imc-unknown-none-elf"
features = ["esp32c3"]
[dependencies]
critical-section = { version = "1.1.3", optional = true }
defmt = { version = "0.3.8", optional = true }
log = { version = "0.4.22", optional = true }
portable-atomic = { version = "1.9.0", optional = true, default-features = false }
critical-section = { version = "1.2.0", optional = true }
defmt = { version = "0.3.10", optional = true }
log = { version = "0.4.25", optional = true }
portable-atomic = { version = "1.10.0", optional = true, default-features = false }
[build-dependencies]
esp-build = { version = "0.1.0", path = "../esp-build" }
log = "0.4.22"
esp-build = { version = "0.2.0", path = "../esp-build" }
log = "0.4.25"
[features]
default = ["critical-section", "colors", "auto"]

View File

@ -18,7 +18,7 @@ embedded-storage = "0.3.1"
critical-section = { version = "1.2.0", optional = true }
[build-dependencies]
esp-build = { version = "0.1.0", path = "../esp-build" }
esp-build = { version = "0.2.0", path = "../esp-build" }
[features]
default = ["critical-section", "storage"]

View File

@ -11,6 +11,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Changed
### Fixed
### Removed
## 0.12.0 - 2025-01-15
### Changed
- Bump smoltcp to 0.12.0 (#2849)
- `csi_enabled` option converted to feature (#2945)
- Bump MSRV to 1.84 (#2951)
@ -21,8 +29,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Fix WPA2-ENTERPRISE functionality (#2896)
- Make sure to de-allocate memory used by timers on removal (#2936)
### Removed
## 0.11.0 - 2024-11-20
### Added
@ -209,4 +215,4 @@ Initial release supporting WiFi on ESP32, ESP32-S2, ESP32-S3, ESP32-C3, ESP32-C2
Initial release supporting WiFi on ESP32, ESP32-S2, ESP32-S3, ESP32-C3, ESP32-C2, ESP32-C6, supporting BLE on WiFi on ESP32, ESP32-S3, ESP32-C3, ESP32-C2, ESP32-C6
[Unreleased]: https://github.com/esp-rs/esp-hal/commits/main/esp-wifi?since=2024-11-20
[Unreleased]: https://github.com/esp-rs/esp-hal/commits/main/esp-wifi?since=2025-01-15

View File

@ -1,6 +1,6 @@
[package]
name = "esp-wifi"
version = "0.11.0"
version = "0.12.0"
edition = "2021"
rust-version = "1.84.0"
description = "A WiFi, Bluetooth and ESP-NOW driver for use with Espressif chips and bare-metal Rust"
@ -10,13 +10,12 @@ categories = ["embedded", "hardware-support", "no-std"]
repository = "https://github.com/esp-rs/esp-hal"
license = "MIT OR Apache-2.0"
[dependencies]
defmt = { version = "0.3.8", optional = true }
log = { version = "0.4.22", optional = true }
defmt = { version = "0.3.10", optional = true }
log = { version = "0.4.25", optional = true }
document-features = "0.2.10"
esp-alloc = { version = "0.5.0", path = "../esp-alloc", optional = true }
esp-hal = { version = "0.22.0", path = "../esp-hal", default-features = false }
esp-alloc = { version = "0.6.0", path = "../esp-alloc", optional = true }
esp-hal = { version = "0.23.0", path = "../esp-hal", default-features = false }
smoltcp = { version = "0.12.0", default-features = false, features = [
"medium-ethernet",
"socket-raw",
@ -31,25 +30,25 @@ heapless = { version = "0.8.0", default-features = false, features = [
] }
num-derive = { version = "0.4.2" }
num-traits = { version = "0.2.19", default-features = false }
esp-wifi-sys = "0.7.0"
embassy-sync = { version = "0.6.0", optional = true }
esp-wifi-sys = "0.7.1"
embassy-sync = { version = "0.6.1", optional = true }
embassy-net-driver = { version = "0.2.0", optional = true }
libm = "0.2.11"
cfg-if = "1.0.0"
portable-atomic = { version = "1.9.0", default-features = false }
portable-atomic = { version = "1.10.0", default-features = false }
portable_atomic_enum = { version = "0.3.1", features = ["portable-atomic"] }
rand_core = "0.6.4"
bt-hci = { version = "0.2.0", optional = true }
esp-config = { version = "0.2.0", path = "../esp-config" }
esp-config = { version = "0.3.0", path = "../esp-config" }
xtensa-lx-rt = { version = "0.17.2", path = "../xtensa-lx-rt", optional = true }
serde = { version = "1.0.215", default-features = false, features = ["derive"], optional = true }
xtensa-lx-rt = { version = "0.18.0", path = "../xtensa-lx-rt", optional = true }
serde = { version = "1.0.217", default-features = false, features = ["derive"], optional = true }
[build-dependencies]
esp-build = { version = "0.1.0", path = "../esp-build" }
esp-config = { version = "0.2.0", path = "../esp-config", features = ["build"] }
esp-metadata = { version = "0.4.0", path = "../esp-metadata" }
esp-build = { version = "0.2.0", path = "../esp-build" }
esp-config = { version = "0.3.0", path = "../esp-config", features = ["build"] }
esp-metadata = { version = "0.5.0", path = "../esp-metadata" }
[features]
default = ["esp-alloc"]

View File

@ -5,18 +5,22 @@ 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
## [Unreleased]
### Added
### Changed
- Bump MSRV to 1.84 (#2951)
### Fixed
### Removed
## 0.18.0 - 2025-01-15
### Changed
- Bump MSRV to 1.84 (#2951)
## 0.17.2 - 2024-11-20
### Fixed
@ -36,3 +40,5 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Store state of FP coprocessor in stack memory (#2057)
## Initial releases
[Unreleased]: https://github.com/esp-rs/esp-hal/commits/main/xtensa-lx?since=2025-01-15

View File

@ -1,6 +1,6 @@
[package]
name = "xtensa-lx-rt"
version = "0.17.2"
version = "0.18.0"
edition = "2021"
rust-version = "1.84.0"
description = "Minimal startup/runtime for Xtensa LX CPUs"
@ -16,13 +16,13 @@ features = ["esp32"]
document-features = "0.2.10"
macros = { version = "0.2.2", package = "xtensa-lx-rt-proc-macros", path = "./procmacros" }
r0 = "1.0.0"
xtensa-lx = { version = "0.9.0", path = "../xtensa-lx" }
xtensa-lx = { version = "0.10.0", path = "../xtensa-lx" }
[build-dependencies]
anyhow = "1.0.89"
anyhow = "1.0.95"
enum-as-inner = "0.6.1"
minijinja = "2.3.1"
serde = { version = "1.0.210", features = ["derive"] }
minijinja = "2.6.0"
serde = { version = "1.0.217", features = ["derive"] }
strum = { version = "0.26.3", features = ["derive"] }
toml = "0.8.19"

View File

@ -9,6 +9,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Added
### Changed
### Fixed
### Removed
## 0.10.0 - 2025-01-15
### Fixed
- Fixed `interrupt:free` incorrectly providing `CriticalSection` (#2537)
@ -37,4 +45,4 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [0.3.0] - 2020-09-19
[Unreleased]: https://github.com/esp-rs/esp-hal/commits/main/xtensa-lx?since=2024-02-21
[Unreleased]: https://github.com/esp-rs/esp-hal/commits/main/xtensa-lx?since=2025-01-15

View File

@ -1,6 +1,6 @@
[package]
name = "xtensa-lx"
version = "0.9.0"
version = "0.10.0"
edition = "2021"
rust-version = "1.84.0"
description = "Low-level access to Xtensa LX processors and peripherals"
@ -11,7 +11,7 @@ keywords = ["lx", "peripheral", "register", "xtensa"]
links = "xtensa-lx"
[dependencies]
critical-section = "1.0.0"
critical-section = "1.2.0"
document-features = "0.2.10"
[features]