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 #887

Merged
merged 2 commits into from
Oct 31, 2023
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
6 changes: 3 additions & 3 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.13.0] - 2023-10-31

### Added

Expand Down Expand Up @@ -74,7 +74,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- The SPI traits are no longer re-exported in the main prelude, but from preludes in `spi::master`/`spi::slave` instead (#860)
- The `embedded-hal-1` and `embedded-hal-async` traits are no longer re-exported in the prelude (#860)

## [0.12.0]
## [0.12.0] - 2023-09-05

### Added

Expand Down Expand Up @@ -273,7 +273,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.12.0...HEAD
[0.13.0]: https://github.com/esp-rs/esp-hal/compare/v0.12.0...v0.13.0
[0.12.0]: https://github.com/esp-rs/esp-hal/compare/v0.11.0...v0.12.0
[0.11.0]: https://github.com/esp-rs/esp-hal/compare/v0.10.0...v0.11.0
[0.10.0]: https://github.com/esp-rs/esp-hal/compare/v0.9.0...v0.10.0
Expand Down
6 changes: 3 additions & 3 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.12.0"
version = "0.13.0"
authors = [
"Jesse Braham <[email protected]>",
"Björn Quentin <[email protected]>",
Expand Down Expand Up @@ -28,7 +28,7 @@ fugit = "0.3.7"
log = { version = "0.4.20", optional = true }
nb = "1.1.0"
paste = "1.0.14"
procmacros = { version = "0.6.1", features = ["enum-dispatch", "ram"], package = "esp-hal-procmacros", path = "../esp-hal-procmacros" }
procmacros = { version = "0.7.0", features = ["enum-dispatch", "ram"], package = "esp-hal-procmacros", path = "../esp-hal-procmacros" }
strum = { version = "0.25.0", default-features = false, features = ["derive"] }
void = { version = "1.0.2", default-features = false }
usb-device = { version = "0.2.9", optional = true }
Expand Down Expand Up @@ -64,7 +64,7 @@ esp32s2 = { version = "0.18.0", features = ["critical-section"], optional = true
esp32s3 = { version = "0.22.0", features = ["critical-section"], optional = true }

[build-dependencies]
basic-toml = "0.1.6"
basic-toml = "0.1.7"
serde = { version = "1.0.190", features = ["derive"] }

[features]
Expand Down
2 changes: 1 addition & 1 deletion esp-hal-procmacros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "esp-hal-procmacros"
version = "0.6.1"
version = "0.7.0"
edition = "2021"
rust-version = "1.67.0"
description = "Procedural macros for ESP-HAL"
Expand Down
6 changes: 3 additions & 3 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.5.0"
version = "0.6.0"
edition = "2021"
rust-version = "1.67.0"
description = "RMT adapter for smartleds"
Expand All @@ -11,8 +11,8 @@ license = "MIT OR Apache-2.0"
features = ["esp32c3"]

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

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.15.0"
version = "0.16.0"
authors = [
"Jesse Braham <[email protected]>",
"Björn Quentin <[email protected]>",
Expand All @@ -25,7 +25,7 @@ categories = [
]

[dependencies]
esp-hal-common = { version = "0.12.0", features = ["esp32"], path = "../esp-hal-common" }
esp-hal-common = { version = "0.13.0", features = ["esp32"], path = "../esp-hal-common" }
embassy-time = { version = "0.1.5", features = ["nightly"], optional = true }

[dev-dependencies]
Expand All @@ -40,13 +40,13 @@ embedded-hal-async = "=1.0.0-rc.1"
embedded-io-async = "0.6.0"
esp-alloc = "0.3.0"
esp-backtrace = { version = "0.9.0", features = ["esp32", "panic-handler", "exception-handler", "print-uart"] }
esp-hal-smartled = { version = "0.5.0", features = ["esp32"], path = "../esp-hal-smartled" }
esp-hal-smartled = { version = "0.6.0", features = ["esp32"], path = "../esp-hal-smartled" }
esp-println = { version = "0.7.0", features = ["esp32"] }
heapless = "0.7.16"
lis3dh-async = "0.8.0"
sha2 = { version = "0.10.8", default-features = false}
smart-leds = "0.3.0"
ssd1306 = "0.8.3"
ssd1306 = "0.8.4"
static_cell = { version = "1.2.0", features = ["nightly"] }

[features]
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.10.0"
version = "0.11.0"
authors = [
"Jesse Braham <[email protected]>",
"Björn Quentin <[email protected]>",
Expand All @@ -25,7 +25,7 @@ categories = [
]

[dependencies]
esp-hal-common = { version = "0.12.0", features = ["esp32c2"], path = "../esp-hal-common" }
esp-hal-common = { version = "0.13.0", features = ["esp32c2"], path = "../esp-hal-common" }
embassy-time = { version = "0.1.5", features = ["nightly"], optional = true }

[dev-dependencies]
Expand All @@ -40,7 +40,7 @@ esp-println = { version = "0.7.0", features = ["esp32c2"] }
heapless = "0.7.16"
lis3dh-async = "0.8.0"
sha2 = { version = "0.10.8", default-features = false}
ssd1306 = "0.8.3"
ssd1306 = "0.8.4"
static_cell = { version = "1.2.0", features = ["nightly"] }
hex-literal = "0.4.1"
crypto-bigint = {version = "0.5.3", default-features = false }
Expand Down
8 changes: 4 additions & 4 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.12.0"
version = "0.13.0"
authors = [
"Jesse Braham <[email protected]>",
"Björn Quentin <[email protected]>",
Expand All @@ -26,7 +26,7 @@ categories = [

[dependencies]
cfg-if = "1.0.0"
esp-hal-common = { version = "0.12.0", features = ["esp32c3"], path = "../esp-hal-common" }
esp-hal-common = { version = "0.13.0", features = ["esp32c3"], path = "../esp-hal-common" }
embassy-time = { version = "0.1.5", features = ["nightly"], optional = true }

[dev-dependencies]
Expand All @@ -41,14 +41,14 @@ embedded-hal-1 = { version = "=1.0.0-rc.1", package = "embedded-hal" }
embedded-hal-async = "=1.0.0-rc.1"
embedded-io-async = "0.6.0"
esp-backtrace = { version = "0.9.0", features = ["esp32c3", "panic-handler", "exception-handler", "print-uart"] }
esp-hal-smartled = { version = "0.5.0", features = ["esp32c3"], path = "../esp-hal-smartled" }
esp-hal-smartled = { version = "0.6.0", features = ["esp32c3"], path = "../esp-hal-smartled" }
esp-println = { version = "0.7.0", features = ["esp32c3"] }
heapless = "0.7.16"
hmac = { version = "0.12.1", default-features = false }
lis3dh-async = "0.8.0"
sha2 = { version = "0.10.8", default-features = false }
smart-leds = "0.3.0"
ssd1306 = "0.8.3"
ssd1306 = "0.8.4"
static_cell = { version = "1.2.0", features = ["nightly"] }
embassy-sync = "0.3.0"

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.5.0"
version = "0.6.0"
authors = [
"Jesse Braham <[email protected]>",
"Björn Quentin <[email protected]>",
Expand All @@ -26,7 +26,7 @@ categories = [
]

[dependencies]
esp-hal-common = { version = "0.12.0", features = ["esp32c6"], path = "../esp-hal-common" }
esp-hal-common = { version = "0.13.0", features = ["esp32c6"], path = "../esp-hal-common" }
embassy-time = { version = "0.1.5", features = ["nightly"], optional = true }

[dev-dependencies]
Expand All @@ -40,14 +40,14 @@ embedded-hal-async = "=1.0.0-rc.1"
embedded-can = "0.4.1"
embedded-io-async = "0.6.0"
esp-backtrace = { version = "0.9.0", features = ["esp32c6", "panic-handler", "exception-handler", "print-uart"] }
esp-hal-smartled = { version = "0.5.0", features = ["esp32c6"], path = "../esp-hal-smartled" }
esp-hal-smartled = { version = "0.6.0", features = ["esp32c6"], path = "../esp-hal-smartled" }
esp-println = { version = "0.7.0", features = ["esp32c6"] }
heapless = "0.7.16"
hmac = { version = "0.12.1", default-features = false }
lis3dh-async = "0.8.0"
sha2 = { version = "0.10.8", default-features = false}
smart-leds = "0.3.0"
ssd1306 = "0.8.3"
ssd1306 = "0.8.4"
static_cell = { version = "1.2.0", features = ["nightly"] }
hex-literal = "0.4.1"
elliptic-curve = {version = "0.13.6", default-features = false, features = ["sec1"] }
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.3.0"
version = "0.4.0"
authors = [
"Kirill Mikhailov <[email protected]>",
"Jesse Braham <[email protected]>",
Expand All @@ -26,7 +26,7 @@ categories = [
]

[dependencies]
esp-hal-common = { version = "0.12.0", features = ["esp32h2"], path = "../esp-hal-common" }
esp-hal-common = { version = "0.13.0", features = ["esp32h2"], path = "../esp-hal-common" }
embassy-time = { version = "0.1.5", features = ["nightly"], optional = true }

[dev-dependencies]
Expand All @@ -40,14 +40,14 @@ embedded-hal-async = "=1.0.0-rc.1"
embedded-can = "0.4.1"
embedded-io-async = "0.6.0"
esp-backtrace = { version = "0.9.0", features = ["esp32h2", "panic-handler", "exception-handler", "print-uart"] }
esp-hal-smartled = { version = "0.5.0", features = ["esp32h2"], path = "../esp-hal-smartled" }
esp-hal-smartled = { version = "0.6.0", features = ["esp32h2"], path = "../esp-hal-smartled" }
esp-println = { version = "0.7.0", features = ["esp32h2"] }
heapless = "0.7.16"
hmac = { version = "0.12.1", default-features = false }
lis3dh-async = "0.8.0"
sha2 = { version = "0.10.8", default-features = false}
smart-leds = "0.3.0"
ssd1306 = "0.8.3"
ssd1306 = "0.8.4"
static_cell = { version = "1.2.0", features = ["nightly"] }
hex-literal = "0.4.1"
elliptic-curve = {version = "0.13.6", default-features = false, features = ["sec1"] }
Expand Down
8 changes: 4 additions & 4 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.12.0"
version = "0.13.0"
authors = [
"Jesse Braham <[email protected]>",
"Björn Quentin <[email protected]>",
Expand All @@ -25,7 +25,7 @@ categories = [
]

[dependencies]
esp-hal-common = { version = "0.12.0", features = ["esp32s2"], path = "../esp-hal-common" }
esp-hal-common = { version = "0.13.0", features = ["esp32s2"], path = "../esp-hal-common" }
embassy-time = { version = "0.1.5", features = ["nightly"], optional = true }
xtensa-atomic-emulation-trap = "0.4.0"

Expand All @@ -41,14 +41,14 @@ embedded-hal-async = "=1.0.0-rc.1"
embedded-io-async = "0.6.0"
esp-alloc = "0.3.0"
esp-backtrace = { version = "0.9.0", features = ["esp32s2", "panic-handler", "print-uart", "exception-handler"] }
esp-hal-smartled = { version = "0.5.0", features = ["esp32s2"], path = "../esp-hal-smartled" }
esp-hal-smartled = { version = "0.6.0", features = ["esp32s2"], path = "../esp-hal-smartled" }
esp-println = { version = "0.7.0", features = ["esp32s2"] }
heapless = "0.7.16"
hmac = { version = "0.12.1", default-features = false }
lis3dh-async = "0.8.0"
sha2 = { version = "0.10.8", default-features = false }
smart-leds = "0.3.0"
ssd1306 = "0.8.3"
ssd1306 = "0.8.4"
static_cell = { version = "1.2.0", features = ["nightly"] }
usb-device = "0.2.9"
usbd-serial = "0.1.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.12.0"
version = "0.13.0"
authors = [
"Jesse Braham <[email protected]>",
"Björn Quentin <[email protected]>",
Expand All @@ -25,7 +25,7 @@ categories = [
]

[dependencies]
esp-hal-common = { version = "0.12.0", features = ["esp32s3"], path = "../esp-hal-common" }
esp-hal-common = { version = "0.13.0", features = ["esp32s3"], path = "../esp-hal-common" }
embassy-time = { version = "0.1.5", features = ["nightly"], optional = true }
r0 = { version = "1.0.0", optional = true }

Expand All @@ -43,14 +43,14 @@ embedded-can = "0.4.1"
embedded-io-async = "0.6.0"
esp-alloc = "0.3.0"
esp-backtrace = { version = "0.9.0", features = ["esp32s3", "panic-handler", "exception-handler", "print-uart"] }
esp-hal-smartled = { version = "0.5.0", features = ["esp32s3"], path = "../esp-hal-smartled" }
esp-hal-smartled = { version = "0.6.0", features = ["esp32s3"], path = "../esp-hal-smartled" }
esp-println = { version = "0.7.0", features = ["esp32s3"] }
heapless = "0.7.16"
hmac = { version = "0.12.1", default-features = false }
lis3dh-async = "0.8.0"
sha2 = { version = "0.10.8", default-features = false }
smart-leds = "0.3.0"
ssd1306 = "0.8.3"
ssd1306 = "0.8.4"
static_cell = { version = "1.2.0", features = ["nightly"] }
usb-device = "0.2.9"
usbd-serial = "0.1.1"
Expand Down