From 58014bfb6a32bc1bd21e9a9f60f2bdb5ca76f4e5 Mon Sep 17 00:00:00 2001 From: Robin Mueller Date: Thu, 10 Oct 2024 15:37:45 +0200 Subject: [PATCH] Bump allowed EPS HAL version --- esp-hal-smartled/CHANGELOG.md | 4 ++++ esp-hal-smartled/Cargo.toml | 12 ++++-------- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/esp-hal-smartled/CHANGELOG.md b/esp-hal-smartled/CHANGELOG.md index b56517e..f41ab67 100644 --- a/esp-hal-smartled/CHANGELOG.md +++ b/esp-hal-smartled/CHANGELOG.md @@ -7,10 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## Unreleased +## 0.13.1 + ### Added ### Changed +- Bump allowed ESP HAL version to >=0.20.0, <=0.21.0 + ### Fixed ### Removed diff --git a/esp-hal-smartled/Cargo.toml b/esp-hal-smartled/Cargo.toml index 18cee65..d786192 100644 --- a/esp-hal-smartled/Cargo.toml +++ b/esp-hal-smartled/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "esp-hal-smartled" -version = "0.13.0" +version = "0.13.1" edition = "2021" rust-version = "1.76.0" description = "RMT peripheral adapter for smart LEDs" @@ -14,18 +14,18 @@ targets = ["riscv32imac-unknown-none-elf"] [dependencies] defmt = { version = "0.3.8", optional = true } document-features = "0.2.10" -esp-hal = "0.20.0" +esp-hal = ">=0.20.0, <=0.21.0" fugit = "0.3.7" smart-leds-trait = "0.3.0" [dev-dependencies] cfg-if = "1.0.0" -esp-backtrace = { version = "0.14.1", features = [ +esp-backtrace = { version = "0.14.2", features = [ "exception-handler", "panic-handler", "println", ] } -esp-println = "0.11.0" +esp-println = "0.12.0" smart-leds = "0.4.0" [features] @@ -46,8 +46,4 @@ esp32s2 = ["esp-backtrace/esp32s2", "esp-hal/esp32s2", "esp-println/esp32s2"] ## Target the ESP32-S3. esp32s3 = ["esp-backtrace/esp32s3", "esp-hal/esp32s3", "esp-println/esp32s3"] -# TODO: Remove patches prior to next release [patch.crates-io] -esp-backtrace = { git = "https://github.com/esp-rs/esp-hal", rev = "d44affc" } -esp-hal = { git = "https://github.com/esp-rs/esp-hal", rev = "d44affc" } -esp-println = { git = "https://github.com/esp-rs/esp-hal", rev = "d44affc" }