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

New package releases #1098

Merged
merged 1 commit into from
Jan 19, 2024
Merged
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: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Please note that only changes to the `esp-hal-common` package are tracked in thi
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]
## [0.15.0] - 2024-01-19

### Added

Expand Down Expand Up @@ -383,7 +383,7 @@ 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.14.1...HEAD
[0.15.0]: https://github.com/esp-rs/esp-hal/compare/v0.14.1...v0.15.0
[0.14.1]: https://github.com/esp-rs/esp-hal/compare/v0.14.0...v0.14.1
[0.14.0]: https://github.com/esp-rs/esp-hal/compare/v0.13.1...v0.14.0
[0.13.1]: https://github.com/esp-rs/esp-hal/compare/v0.13.0...v0.13.1
Expand Down
12 changes: 6 additions & 6 deletions esp-hal-common/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "esp-hal-common"
version = "0.14.1"
version = "0.15.0"
edition = "2021"
rust-version = "1.67.0"
description = "HAL implementations for peripherals common among Espressif devices; should not be used directly"
Expand All @@ -15,7 +15,7 @@ license = "MIT OR Apache-2.0"
links = "esp-hal-common"

[dependencies]
bitflags = "2.4.1"
bitflags = "2.4.2"
bitfield = "0.14.0"
cfg-if = "1.0.0"
critical-section = "1.1.2"
Expand Down Expand Up @@ -48,8 +48,8 @@ embassy-sync = { version = "0.5.0", optional = true }
embassy-time-driver = { version = "0.1.0", optional = true }

# RISC-V
riscv = { version = "0.10.1", optional = true }
esp-riscv-rt = { version = "0.6.0", optional = true, path = "../esp-riscv-rt" }
riscv = { version = "0.11.0", optional = true }
esp-riscv-rt = { version = "0.6.1", optional = true, path = "../esp-riscv-rt" }

# Xtensa
xtensa-lx = { version = "0.8.0", optional = true }
Expand All @@ -70,8 +70,8 @@ esp32s2 = { version = "0.19.0", features = ["critical-section"], optional = true
esp32s3 = { version = "0.23.0", features = ["critical-section"], optional = true }

[build-dependencies]
basic-toml = "0.1.7"
serde = { version = "1.0.193", features = ["derive"] }
basic-toml = "0.1.8"
serde = { version = "1.0.195", features = ["derive"] }

[features]
esp32 = ["dep:esp32", "xtensa", "procmacros/esp32", "xtensa-lx/esp32", "xtensa-lx-rt?/esp32"]
Expand Down
4 changes: 2 additions & 2 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.7.0"
version = "0.8.0"
edition = "2021"
rust-version = "1.67.0"
description = "RMT adapter for smartleds"
Expand All @@ -12,7 +12,7 @@ features = ["esp32c3"]

[dependencies]
defmt = { version = "=0.3.5", optional = true }
esp-hal-common = { version = "0.14.1", path = "../esp-hal-common" }
esp-hal-common = { version = "0.15.0", path = "../esp-hal-common" }
fugit = "0.3.7"
smart-leds-trait = "0.3.0"

Expand Down
8 changes: 2 additions & 6 deletions esp-riscv-rt/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,11 @@ 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]

### Added
## 0.6.1 - 2024-01-19

### Changed

### Fixed

### Removed
- Updated to latest version of `riscv` and `riscv-rt-macros` dependencies

## 0.6.0 - 2023-12-12

Expand Down
6 changes: 3 additions & 3 deletions esp-riscv-rt/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "esp-riscv-rt"
version = "0.6.0"
version = "0.6.1"
edition = "2021"
rust-version = "1.65"
description = "Minimal runtime / startup for RISC-V CPUs from Espressif"
Expand All @@ -10,8 +10,8 @@ keywords = ["esp32", "riscv", "runtime", "startup"]
categories = ["embedded", "no-std"]

[dependencies]
riscv = "0.10.1"
riscv-rt-macros = "0.2.0"
riscv = "0.11.0"
riscv-rt-macros = "0.2.1"

[features]
direct-vectoring = []
Expand Down
8 changes: 4 additions & 4 deletions esp32-hal/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "esp32-hal"
version = "0.17.0"
version = "0.18.0"
edition = "2021"
rust-version = "1.67.0"
description = "HAL for ESP32 microcontrollers"
Expand All @@ -21,7 +21,7 @@ categories = [
]

[dependencies]
esp-hal-common = { version = "0.14.0", features = ["esp32"], path = "../esp-hal-common" }
esp-hal-common = { version = "0.15.0", features = ["esp32"], path = "../esp-hal-common" }

[dev-dependencies]
aes = "0.8.3"
Expand All @@ -34,10 +34,10 @@ embedded-graphics = "0.8.1"
embedded-hal-1 = { version = "1.0.0", package = "embedded-hal" }
embedded-hal-async = "1.0.0"
embedded-io-async = "0.6.1"
embedded-hal-bus = "0.1.0-rc.2"
embedded-hal-bus = "0.1.0"
esp-alloc = "0.3.0"
esp-backtrace = { version = "0.10.0", features = ["esp32", "panic-handler", "exception-handler", "print-uart"] }
esp-hal-smartled = { version = "0.7.0", features = ["esp32"], path = "../esp-hal-smartled" }
esp-hal-smartled = { version = "0.8.0", features = ["esp32"], path = "../esp-hal-smartled" }
esp-println = { version = "0.8.0", features = ["esp32"] }
heapless = "0.8.0"
lis3dh-async = "0.9.1"
Expand Down
6 changes: 3 additions & 3 deletions esp32c2-hal/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "esp32c2-hal"
version = "0.12.0"
version = "0.13.0"
edition = "2021"
rust-version = "1.67.0"
description = "HAL for ESP32-C2 microcontrollers"
Expand All @@ -21,7 +21,7 @@ categories = [
]

[dependencies]
esp-hal-common = { version = "0.14.0", features = ["esp32c2"], path = "../esp-hal-common" }
esp-hal-common = { version = "0.15.0", features = ["esp32c2"], path = "../esp-hal-common" }

[dev-dependencies]
critical-section = "1.1.2"
Expand All @@ -34,7 +34,7 @@ embedded-graphics = "0.8.1"
embedded-hal-1 = { version = "1.0.0", package = "embedded-hal" }
embedded-hal-async = "1.0.0"
embedded-io-async = "0.6.1"
embedded-hal-bus = "0.1.0-rc.2"
embedded-hal-bus = "0.1.0"
esp-backtrace = { version = "0.10.0", features = ["esp32c2", "panic-handler", "exception-handler", "print-uart"] }
esp-println = { version = "0.8.0", features = ["esp32c2"] }
heapless = "0.8.0"
Expand Down
10 changes: 4 additions & 6 deletions esp32c3-hal/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "esp32c3-hal"
version = "0.14.0"
version = "0.15.0"
edition = "2021"
rust-version = "1.67.0"
description = "HAL for ESP32-C3 microcontrollers"
Expand All @@ -21,8 +21,7 @@ categories = [
]

[dependencies]
cfg-if = "1.0.0"
esp-hal-common = { version = "0.14.0", features = ["esp32c3"], path = "../esp-hal-common" }
esp-hal-common = { version = "0.15.0", features = ["esp32c3"], path = "../esp-hal-common" }

[dev-dependencies]
aes = "0.8.3"
Expand All @@ -37,9 +36,9 @@ embedded-hal = { version = "0.2.7", features = ["unproven"] }
embedded-hal-1 = { version = "1.0.0", package = "embedded-hal" }
embedded-hal-async = "1.0.0"
embedded-io-async = "0.6.1"
embedded-hal-bus = "0.1.0-rc.2"
embedded-hal-bus = "0.1.0"
esp-backtrace = { version = "0.10.0", features = ["esp32c3", "panic-handler", "exception-handler", "print-uart"] }
esp-hal-smartled = { version = "0.7.0", features = ["esp32c3"], path = "../esp-hal-smartled" }
esp-hal-smartled = { version = "0.8.0", features = ["esp32c3"], path = "../esp-hal-smartled" }
esp-println = { version = "0.8.0", features = ["esp32c3"] }
heapless = "0.8.0"
hmac = { version = "0.12.1", default-features = false }
Expand All @@ -49,7 +48,6 @@ smart-leds = "0.4.0"
ssd1306 = "0.8.4"
static_cell = { version = "2.0.0", features = ["nightly"] }


[features]
default = ["rt", "vectored", "zero-rtc-bss", "embassy-integrated-timers"]
async = ["esp-hal-common/async"]
Expand Down
8 changes: 4 additions & 4 deletions esp32c6-hal/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "esp32c6-hal"
version = "0.7.0"
version = "0.8.0"
edition = "2021"
rust-version = "1.67.0"
description = "HAL for ESP32-C6 microcontrollers"
Expand All @@ -21,7 +21,7 @@ categories = [
]

[dependencies]
esp-hal-common = { version = "0.14.0", features = ["esp32c6"], path = "../esp-hal-common" }
esp-hal-common = { version = "0.15.0", features = ["esp32c6"], path = "../esp-hal-common" }

[dev-dependencies]
aes = "0.8.3"
Expand All @@ -36,9 +36,9 @@ embedded-hal-1 = { version = "1.0.0", package = "embedded-hal" }
embedded-hal-async = "1.0.0"
embedded-can = "0.4.1"
embedded-io-async = "0.6.1"
embedded-hal-bus = "0.1.0-rc.2"
embedded-hal-bus = "0.1.0"
esp-backtrace = { version = "0.10.0", features = ["esp32c6", "panic-handler", "exception-handler", "print-uart"] }
esp-hal-smartled = { version = "0.7.0", features = ["esp32c6"], path = "../esp-hal-smartled" }
esp-hal-smartled = { version = "0.8.0", features = ["esp32c6"], path = "../esp-hal-smartled" }
esp-println = { version = "0.8.0", features = ["esp32c6"] }
heapless = "0.8.0"
hex-literal = "0.4.1"
Expand Down
8 changes: 4 additions & 4 deletions esp32h2-hal/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "esp32h2-hal"
version = "0.5.0"
version = "0.6.0"
edition = "2021"
rust-version = "1.67.0"
description = "HAL for ESP32-H2 microcontrollers"
Expand All @@ -21,7 +21,7 @@ categories = [
]

[dependencies]
esp-hal-common = { version = "0.14.0", features = ["esp32h2"], path = "../esp-hal-common" }
esp-hal-common = { version = "0.15.0", features = ["esp32h2"], path = "../esp-hal-common" }

[dev-dependencies]
aes = "0.8.3"
Expand All @@ -36,9 +36,9 @@ embedded-hal-1 = { version = "1.0.0", package = "embedded-hal" }
embedded-hal-async = "1.0.0"
embedded-can = "0.4.1"
embedded-io-async = "0.6.1"
embedded-hal-bus = "0.1.0-rc.2"
embedded-hal-bus = "0.1.0"
esp-backtrace = { version = "0.10.0", features = ["esp32h2", "panic-handler", "exception-handler", "print-uart"] }
esp-hal-smartled = { version = "0.7.0", features = ["esp32h2"], path = "../esp-hal-smartled" }
esp-hal-smartled = { version = "0.8.0", features = ["esp32h2"], path = "../esp-hal-smartled" }
esp-println = { version = "0.8.0", features = ["esp32h2"] }
heapless = "0.8.0"
hex-literal = "0.4.1"
Expand Down
11 changes: 4 additions & 7 deletions esp32s2-hal/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "esp32s2-hal"
version = "0.14.0"
version = "0.15.0"
edition = "2021"
rust-version = "1.67.0"
description = "HAL for ESP32-S2 microcontrollers"
Expand All @@ -21,7 +21,7 @@ categories = [
]

[dependencies]
esp-hal-common = { version = "0.14.0", features = ["esp32s2"], path = "../esp-hal-common" }
esp-hal-common = { version = "0.15.0", features = ["esp32s2"], path = "../esp-hal-common" }

[dev-dependencies]
aes = "0.8.3"
Expand All @@ -34,14 +34,11 @@ embedded-graphics = "0.8.1"
embedded-hal-1 = { version = "1.0.0", package = "embedded-hal" }
embedded-hal-async = "1.0.0"
embedded-io-async = "0.6.1"
embedded-hal-bus = "0.1.0-rc.2"
embedded-hal-bus = "0.1.0"
esp-alloc = "0.3.0"
esp-backtrace = { version = "0.10.0", features = ["esp32s2", "panic-handler", "print-uart", "exception-handler"] }
esp-hal-smartled = { version = "0.7.0", features = ["esp32s2"], path = "../esp-hal-smartled" }
esp-hal-smartled = { version = "0.8.0", features = ["esp32s2"], path = "../esp-hal-smartled" }
esp-println = { version = "0.8.0", features = ["esp32s2"] }
# Xtensa targets are not auto detected to need atomic emulation in the futures-* crates.
# As for how to remove this dep for good, see: https://github.com/rust-lang/futures-rs/pull/2805
futures-util = { version = "0.3.17", default-features = false, features = ["portable-atomic"] }
heapless = { version = "0.8.0", features = ["portable-atomic"] }
hmac = { version = "0.12.1", default-features = false }
lis3dh-async = "0.9.1"
Expand Down
8 changes: 4 additions & 4 deletions esp32s3-hal/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "esp32s3-hal"
version = "0.14.0"
version = "0.15.0"
edition = "2021"
rust-version = "1.67.0"
description = "HAL for ESP32-S3 microcontrollers"
Expand All @@ -21,7 +21,7 @@ categories = [
]

[dependencies]
esp-hal-common = { version = "0.14.0", features = ["esp32s3"], path = "../esp-hal-common" }
esp-hal-common = { version = "0.15.0", features = ["esp32s3"], path = "../esp-hal-common" }
r0 = { version = "1.0.0", optional = true }

[dev-dependencies]
Expand All @@ -37,10 +37,10 @@ embedded-hal-1 = { version = "1.0.0", package = "embedded-hal" }
embedded-hal-async = "1.0.0"
embedded-can = "0.4.1"
embedded-io-async = "0.6.1"
embedded-hal-bus = "0.1.0-rc.2"
embedded-hal-bus = "0.1.0"
esp-alloc = "0.3.0"
esp-backtrace = { version = "0.10.0", features = ["esp32s3", "panic-handler", "exception-handler", "print-uart"] }
esp-hal-smartled = { version = "0.7.0", features = ["esp32s3"], path = "../esp-hal-smartled" }
esp-hal-smartled = { version = "0.8.0", features = ["esp32s3"], path = "../esp-hal-smartled" }
esp-println = { version = "0.8.0", features = ["esp32s3"] }
heapless = "0.8.0"
hmac = { version = "0.12.1", default-features = false }
Expand Down