From 4b66e3dba736f30ca370f670a8d3e1012fde50a3 Mon Sep 17 00:00:00 2001 From: Scott Mabin Date: Wed, 15 Jan 2025 16:39:12 +0000 Subject: [PATCH] prepare for esp-hal@0.23.1 (#2966) --- README.md | 4 ++-- esp-hal/CHANGELOG.md | 11 ++++++++--- esp-hal/Cargo.toml | 2 +- 3 files changed, 11 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index e0e8f02f107..148be1f4c27 100644 --- a/README.md +++ b/README.md @@ -42,11 +42,11 @@ For information relating to the development of Rust applications on ESP devices, For information about the HAL and how to use it in your own projects, please refer to the [documentation]. -When browsing the examples, we recommend viewing the tag for the `esp-hal` release you are using to ensure compatibility, e.g.) [v0.22.0], as the `main` branch is used for development and APIs may have changed in the meantime. +When browsing the examples, we recommend viewing the tag for the `esp-hal` release you are using to ensure compatibility, e.g. [v0.23.1], as the `main` branch is used for development and APIs may have changed in the meantime. [The Rust on ESP Book]: https://esp-rs.github.io/book/ [documentation]: https://docs.esp-rs.org/esp-hal/ -[v0.22.0]: https://github.com/esp-rs/esp-hal/tree/v0.22.0/examples +[v0.23.1]: https://github.com/esp-rs/esp-hal/tree/v0.23.1/examples ## Resources diff --git a/esp-hal/CHANGELOG.md b/esp-hal/CHANGELOG.md index 1515222460d..ff8b0896617 100644 --- a/esp-hal/CHANGELOG.md +++ b/esp-hal/CHANGELOG.md @@ -13,10 +13,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Fixed -- Fixed `PriorityLock` being ineffective with `Priority::max()` on RISC-V CPUs (#2964) - ### Removed +## [0.23.1] - 2025-01-15 + +### Fixed + +- Fixed `PriorityLock` being ineffective with `Priority::max()` on RISC-V CPUs (#2964) + ## [0.23.0] - 2025-01-15 ### Added @@ -1070,7 +1074,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.23.0...HEAD +[Unreleased]: https://github.com/esp-rs/esp-hal/compare/v0.23.1...HEAD +[0.23.1]: https://github.com/esp-rs/esp-hal/compare/v0.23.0..v0.23.1 [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 diff --git a/esp-hal/Cargo.toml b/esp-hal/Cargo.toml index a69475a166a..2f1520d92db 100644 --- a/esp-hal/Cargo.toml +++ b/esp-hal/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "esp-hal" -version = "0.23.0" +version = "0.23.1" edition = "2021" rust-version = "1.84.0" description = "Bare-metal HAL for Espressif devices"