Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump allowed EPS HAL version for smartled crate #5

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions esp-hal-smartled/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
12 changes: 4 additions & 8 deletions esp-hal-smartled/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand All @@ -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]
Expand All @@ -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" }