diff --git a/README.md b/README.md
index 435577804..e0e8f02f1 100644
--- a/README.md
+++ b/README.md
@@ -1,15 +1,17 @@
-
+
+
+
-
+esp-hal
-# esp-hal
-
-
-
-
-[](https://matrix.to/#/#esp-rs:matrix.org)
-
-
+
+
+
+
+
+
+
+
Bare-metal (`no_std`) hardware abstraction layer for Espressif devices. Currently supports, to varying degrees, the following devices:
diff --git a/esp-alloc/CHANGELOG.md b/esp-alloc/CHANGELOG.md
index a440d45cf..ede8b92c5 100644
--- a/esp-alloc/CHANGELOG.md
+++ b/esp-alloc/CHANGELOG.md
@@ -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
diff --git a/esp-alloc/Cargo.toml b/esp-alloc/Cargo.toml
index ec0e64571..a67efe9c5 100644
--- a/esp-alloc/Cargo.toml
+++ b/esp-alloc/Cargo.toml
@@ -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"
diff --git a/esp-backtrace/CHANGELOG.md b/esp-backtrace/CHANGELOG.md
index e1b1aa8fa..2825c8d51 100644
--- a/esp-backtrace/CHANGELOG.md
+++ b/esp-backtrace/CHANGELOG.md
@@ -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
diff --git a/esp-backtrace/Cargo.toml b/esp-backtrace/Cargo.toml
index e59a54dc1..142b070ed 100644
--- a/esp-backtrace/Cargo.toml
+++ b/esp-backtrace/Cargo.toml
@@ -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"]
diff --git a/esp-build/CHANGELOG.md b/esp-build/CHANGELOG.md
index adc5a3122..74b29bbef 100644
--- a/esp-build/CHANGELOG.md
+++ b/esp-build/CHANGELOG.md
@@ -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
diff --git a/esp-build/Cargo.toml b/esp-build/Cargo.toml
index daf497aa6..ada5438d5 100644
--- a/esp-build/Cargo.toml
+++ b/esp-build/Cargo.toml
@@ -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"
diff --git a/esp-config/CHANGELOG.md b/esp-config/CHANGELOG.md
index 704037f24..d125df3cc 100644
--- a/esp-config/CHANGELOG.md
+++ b/esp-config/CHANGELOG.md
@@ -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
diff --git a/esp-config/Cargo.toml b/esp-config/Cargo.toml
index e94f95095..b82ef60d1 100644
--- a/esp-config/Cargo.toml
+++ b/esp-config/Cargo.toml
@@ -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"
diff --git a/esp-hal-embassy/CHANGELOG.md b/esp-hal-embassy/CHANGELOG.md
index ae22a0115..a8c1d22fb 100644
--- a/esp-hal-embassy/CHANGELOG.md
+++ b/esp-hal-embassy/CHANGELOG.md
@@ -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
diff --git a/esp-hal-embassy/Cargo.toml b/esp-hal-embassy/Cargo.toml
index 9144dc6ef..1cbb22763 100644
--- a/esp-hal-embassy/Cargo.toml
+++ b/esp-hal-embassy/Cargo.toml
@@ -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"]
diff --git a/esp-hal-procmacros/CHANGELOG.md b/esp-hal-procmacros/CHANGELOG.md
index 78cf192c1..c1f2722b0 100644
--- a/esp-hal-procmacros/CHANGELOG.md
+++ b/esp-hal-procmacros/CHANGELOG.md
@@ -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
diff --git a/esp-hal-procmacros/Cargo.toml b/esp-hal-procmacros/Cargo.toml
index 8a05f6cdf..eb0796c4f 100644
--- a/esp-hal-procmacros/Cargo.toml
+++ b/esp-hal-procmacros/Cargo.toml
@@ -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"
diff --git a/esp-hal/CHANGELOG.md b/esp-hal/CHANGELOG.md
index 5523b7c7c..770cee127 100644
--- a/esp-hal/CHANGELOG.md
+++ b/esp-hal/CHANGELOG.md
@@ -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
diff --git a/esp-hal/Cargo.toml b/esp-hal/Cargo.toml
index aa51122c9..a69475a16 100644
--- a/esp-hal/Cargo.toml
+++ b/esp-hal/Cargo.toml
@@ -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 = []
diff --git a/esp-hal/MIGRATING-0.22.md b/esp-hal/MIGRATING-0.22.md
index 44dce47be..df764737e 100644
--- a/esp-hal/MIGRATING-0.22.md
+++ b/esp-hal/MIGRATING-0.22.md
@@ -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.
diff --git a/esp-ieee802154/CHANGELOG.md b/esp-ieee802154/CHANGELOG.md
index f87c7461e..4e9872109 100644
--- a/esp-ieee802154/CHANGELOG.md
+++ b/esp-ieee802154/CHANGELOG.md
@@ -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
diff --git a/esp-ieee802154/Cargo.toml b/esp-ieee802154/Cargo.toml
index 555d9d458..fec421b3b 100644
--- a/esp-ieee802154/Cargo.toml
+++ b/esp-ieee802154/Cargo.toml
@@ -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]
diff --git a/esp-lp-hal/Cargo.toml b/esp-lp-hal/Cargo.toml
index 5f68494ce..66156a2c8 100644
--- a/esp-lp-hal/Cargo.toml
+++ b/esp-lp-hal/Cargo.toml
@@ -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"]
diff --git a/esp-metadata/CHANGELOG.md b/esp-metadata/CHANGELOG.md
index 3f88466ca..2778de675 100644
--- a/esp-metadata/CHANGELOG.md
+++ b/esp-metadata/CHANGELOG.md
@@ -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
diff --git a/esp-metadata/Cargo.toml b/esp-metadata/Cargo.toml
index 33b821479..4f06a3621 100644
--- a/esp-metadata/Cargo.toml
+++ b/esp-metadata/Cargo.toml
@@ -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"] }
diff --git a/esp-println/CHANGELOG.md b/esp-println/CHANGELOG.md
index 0947c96e1..290a50708 100644
--- a/esp-println/CHANGELOG.md
+++ b/esp-println/CHANGELOG.md
@@ -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
diff --git a/esp-println/Cargo.toml b/esp-println/Cargo.toml
index 2af60636e..8b4b3a01b 100644
--- a/esp-println/Cargo.toml
+++ b/esp-println/Cargo.toml
@@ -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"]
diff --git a/esp-storage/Cargo.toml b/esp-storage/Cargo.toml
index 16e140d23..00b24a456 100644
--- a/esp-storage/Cargo.toml
+++ b/esp-storage/Cargo.toml
@@ -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"]
diff --git a/esp-wifi/CHANGELOG.md b/esp-wifi/CHANGELOG.md
index 477e7f12f..2b385f3d4 100644
--- a/esp-wifi/CHANGELOG.md
+++ b/esp-wifi/CHANGELOG.md
@@ -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
diff --git a/esp-wifi/Cargo.toml b/esp-wifi/Cargo.toml
index 4e27ba85e..e2380f1e2 100644
--- a/esp-wifi/Cargo.toml
+++ b/esp-wifi/Cargo.toml
@@ -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"]
diff --git a/xtensa-lx-rt/CHANGELOG.md b/xtensa-lx-rt/CHANGELOG.md
index 45c61ceb6..10f714bdb 100644
--- a/xtensa-lx-rt/CHANGELOG.md
+++ b/xtensa-lx-rt/CHANGELOG.md
@@ -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
diff --git a/xtensa-lx-rt/Cargo.toml b/xtensa-lx-rt/Cargo.toml
index 093a290e4..e0e8817f1 100644
--- a/xtensa-lx-rt/Cargo.toml
+++ b/xtensa-lx-rt/Cargo.toml
@@ -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"
diff --git a/xtensa-lx/CHANGELOG.md b/xtensa-lx/CHANGELOG.md
index f2b9eba22..92bf6f10c 100644
--- a/xtensa-lx/CHANGELOG.md
+++ b/xtensa-lx/CHANGELOG.md
@@ -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
diff --git a/xtensa-lx/Cargo.toml b/xtensa-lx/Cargo.toml
index 080d3c058..d2d8cf70e 100644
--- a/xtensa-lx/Cargo.toml
+++ b/xtensa-lx/Cargo.toml
@@ -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]