New releases for all packages
This commit is contained in:
parent
ecd7fdde7f
commit
9dba3615ed
@ -9,6 +9,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||
|
||||
## [Unreleased]
|
||||
|
||||
## [0.9.0] - 2023-05-02
|
||||
|
||||
### Added
|
||||
|
||||
- Add bare-bones PSRAM support for ESP32-S2 (#493)
|
||||
@ -16,6 +18,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||
- Add RSA peripheral support (#467)
|
||||
- Add PeripheralClockControl argument to `timg`, `wdt`, `sha`, `usb-serial-jtag` and `uart` constructors (#463)
|
||||
- Added API to raise and reset software interrupts (#426)
|
||||
- Implement `embedded_hal_nb::serial::*` traits for `UsbSerialJtag` (#498)
|
||||
|
||||
### Fixed
|
||||
|
||||
@ -56,7 +59,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.8.0...HEAD
|
||||
[unreleased]: https://github.com/esp-rs/esp-hal/compare/v0.9.0...HEAD
|
||||
[0.9.0]: https://github.com/esp-rs/esp-hal/compare/v0.8.0...v0.9.0
|
||||
[0.8.0]: https://github.com/esp-rs/esp-hal/compare/v0.7.1...v0.8.0
|
||||
[0.7.1]: https://github.com/esp-rs/esp-hal/compare/v0.7.0...v0.7.1
|
||||
[0.7.0]: https://github.com/esp-rs/esp-hal/compare/v0.5.0...v0.7.0
|
||||
@ -64,4 +68,4 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||
[0.4.0]: https://github.com/esp-rs/esp-hal/compare/v0.3.0...v0.4.0
|
||||
[0.3.0]: https://github.com/esp-rs/esp-hal/compare/v0.2.0...v0.3.0
|
||||
[0.2.0]: https://github.com/esp-rs/esp-hal/compare/v0.1.0...v0.2.0
|
||||
[0.0.1]: https://github.com/esp-rs/esp-hal/releases/tag/v0.1.0
|
||||
[0.1.0]: https://github.com/esp-rs/esp-hal/releases/tag/v0.1.0
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "esp-hal-common"
|
||||
version = "0.8.0"
|
||||
version = "0.9.0"
|
||||
authors = [
|
||||
"Jesse Braham <jesse@beta7.io>",
|
||||
"Björn Quentin <bjoern.quentin@mobile-j.de>",
|
||||
@ -12,7 +12,7 @@ repository = "https://github.com/esp-rs/esp-hal"
|
||||
license = "MIT OR Apache-2.0"
|
||||
|
||||
[dependencies]
|
||||
bitflags = "2.1.0"
|
||||
bitflags = "2.2.1"
|
||||
cfg-if = "1.0.0"
|
||||
critical-section = "1.1.1"
|
||||
embedded-can = { version = "0.4.1", optional = true }
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "esp-hal-smartled"
|
||||
version = "0.1.0"
|
||||
version = "0.2.0"
|
||||
edition = "2021"
|
||||
description = "RMT adapter for smartleds"
|
||||
repository = "https://github.com/esp-rs/esp-hal"
|
||||
@ -10,7 +10,7 @@ license = "MIT OR Apache-2.0"
|
||||
features = ["esp32c3"]
|
||||
|
||||
[dependencies]
|
||||
esp-hal-common = { version = "0.8.0", path = "../esp-hal-common" }
|
||||
esp-hal-common = { version = "0.9.0", path = "../esp-hal-common" }
|
||||
fugit = "0.3.6"
|
||||
smart-leds-trait = "0.2.1"
|
||||
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "esp32-hal"
|
||||
version = "0.11.0"
|
||||
version = "0.12.0"
|
||||
authors = [
|
||||
"Jesse Braham <jesse@beta7.io>",
|
||||
"Björn Quentin <bjoern.quentin@mobile-j.de>",
|
||||
@ -30,16 +30,16 @@ embedded-hal = { version = "0.2.7", features = ["unproven"] }
|
||||
embedded-hal-1 = { version = "=1.0.0-alpha.10", optional = true, package = "embedded-hal" }
|
||||
embedded-hal-async = { version = "0.2.0-alpha.1", optional = true }
|
||||
embedded-hal-nb = { version = "=1.0.0-alpha.2", optional = true }
|
||||
esp-hal-common = { version = "0.8.0", features = ["esp32"], path = "../esp-hal-common" }
|
||||
esp-hal-common = { version = "0.9.0", features = ["esp32"], path = "../esp-hal-common" }
|
||||
|
||||
[dev-dependencies]
|
||||
aes = "0.8.2"
|
||||
critical-section = "1.1.1"
|
||||
crypto-bigint = {version = "0.5.1", default-features = false}
|
||||
crypto-bigint = { version = "0.5.2", default-features = false}
|
||||
embassy-executor = { version = "0.2.0", features = ["nightly", "integrated-timers", "arch-xtensa", "executor-thread"] }
|
||||
embedded-graphics = "0.7.1"
|
||||
esp-backtrace = { version = "0.7.0", features = ["esp32", "panic-handler", "exception-handler", "print-uart"] }
|
||||
esp-hal-smartled = { version = "0.1.0", features = ["esp32"], path = "../esp-hal-smartled" }
|
||||
esp-hal-smartled = { version = "0.2.0", features = ["esp32"], path = "../esp-hal-smartled" }
|
||||
esp-println = { version = "0.5.0", features = ["esp32"] }
|
||||
sha2 = { version = "0.10.6", default-features = false}
|
||||
smart-leds = "0.3.0"
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "esp32c2-hal"
|
||||
version = "0.6.0"
|
||||
version = "0.7.0"
|
||||
authors = [
|
||||
"Jesse Braham <jesse@beta7.io>",
|
||||
"Björn Quentin <bjoern.quentin@mobile-j.de>",
|
||||
@ -30,7 +30,7 @@ embedded-hal = { version = "0.2.7", features = ["unproven"] }
|
||||
embedded-hal-1 = { version = "=1.0.0-alpha.10", optional = true, package = "embedded-hal" }
|
||||
embedded-hal-async = { version = "0.2.0-alpha.1", optional = true }
|
||||
embedded-hal-nb = { version = "=1.0.0-alpha.2", optional = true }
|
||||
esp-hal-common = { version = "0.8.0", features = ["esp32c2"], path = "../esp-hal-common" }
|
||||
esp-hal-common = { version = "0.9.0", features = ["esp32c2"], path = "../esp-hal-common" }
|
||||
|
||||
[dev-dependencies]
|
||||
critical-section = "1.1.1"
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "esp32c3-hal"
|
||||
version = "0.8.0"
|
||||
version = "0.9.0"
|
||||
authors = [
|
||||
"Jesse Braham <jesse@beta7.io>",
|
||||
"Björn Quentin <bjoern.quentin@mobile-j.de>",
|
||||
@ -32,16 +32,16 @@ embedded-hal-1 = { version = "=1.0.0-alpha.10", optional = true, package = "
|
||||
embedded-hal-async = { version = "0.2.0-alpha.1", optional = true }
|
||||
embedded-hal-nb = { version = "=1.0.0-alpha.2", optional = true }
|
||||
embedded-can = { version = "0.4.1", optional = true }
|
||||
esp-hal-common = { version = "0.8.0", features = ["esp32c3"], path = "../esp-hal-common" }
|
||||
esp-hal-common = { version = "0.9.0", features = ["esp32c3"], path = "../esp-hal-common" }
|
||||
|
||||
[dev-dependencies]
|
||||
aes = "0.8.2"
|
||||
critical-section = "1.1.1"
|
||||
crypto-bigint = {version = "0.5.1",default-features = false}
|
||||
crypto-bigint = { version = "0.5.2", default-features = false}
|
||||
embassy-executor = { version = "0.2.0", features = ["nightly", "integrated-timers", "arch-riscv32", "executor-thread"] }
|
||||
embedded-graphics = "0.7.1"
|
||||
esp-backtrace = { version = "0.7.0", features = ["esp32c3", "panic-handler", "exception-handler", "print-uart"] }
|
||||
esp-hal-smartled = { version = "0.1.0", features = ["esp32c3"], path = "../esp-hal-smartled" }
|
||||
esp-hal-smartled = { version = "0.2.0", features = ["esp32c3"], path = "../esp-hal-smartled" }
|
||||
esp-println = { version = "0.5.0", features = ["esp32c3"] }
|
||||
sha2 = { version = "0.10.6", default-features = false}
|
||||
smart-leds = "0.3.0"
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "esp32c6-hal"
|
||||
version = "0.1.0"
|
||||
version = "0.2.0"
|
||||
authors = [
|
||||
"Jesse Braham <jesse@beta7.io>",
|
||||
"Björn Quentin <bjoern.quentin@mobile-j.de>",
|
||||
@ -33,16 +33,16 @@ embedded-hal-1 = { version = "=1.0.0-alpha.10", optional = true, package = "
|
||||
embedded-hal-async = { version = "0.2.0-alpha.1", optional = true }
|
||||
embedded-hal-nb = { version = "=1.0.0-alpha.2", optional = true }
|
||||
embedded-can = { version = "0.4.1", optional = true }
|
||||
esp-hal-common = { version = "0.8.0", features = ["esp32c6"], path = "../esp-hal-common" }
|
||||
esp-hal-common = { version = "0.9.0", features = ["esp32c6"], path = "../esp-hal-common" }
|
||||
|
||||
[dev-dependencies]
|
||||
aes = "0.8.2"
|
||||
critical-section = "1.1.1"
|
||||
crypto-bigint = {version = "0.5.1",default-features = false}
|
||||
crypto-bigint = { version = "0.5.2", default-features = false}
|
||||
embassy-executor = { version = "0.2.0", features = ["nightly", "integrated-timers", "arch-riscv32", "executor-thread"] }
|
||||
embedded-graphics = "0.7.1"
|
||||
esp-backtrace = { version = "0.7.0", features = ["esp32c6", "panic-handler", "exception-handler", "print-uart"] }
|
||||
esp-hal-smartled = { version = "0.1.0", features = ["esp32c6"], path = "../esp-hal-smartled" }
|
||||
esp-hal-smartled = { version = "0.2.0", features = ["esp32c6"], path = "../esp-hal-smartled" }
|
||||
esp-println = { version = "0.5.0", features = ["esp32c6"] }
|
||||
sha2 = { version = "0.10.6", default-features = false}
|
||||
smart-leds = "0.3.0"
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "esp32s2-hal"
|
||||
version = "0.8.0"
|
||||
version = "0.9.0"
|
||||
authors = [
|
||||
"Jesse Braham <jesse@beta7.io>",
|
||||
"Björn Quentin <bjoern.quentin@mobile-j.de>",
|
||||
@ -30,17 +30,18 @@ embedded-hal = { version = "0.2.7", features = ["unproven"] }
|
||||
embedded-hal-1 = { version = "=1.0.0-alpha.10", optional = true, package = "embedded-hal" }
|
||||
embedded-hal-async = { version = "0.2.0-alpha.1", optional = true }
|
||||
embedded-hal-nb = { version = "=1.0.0-alpha.2", optional = true }
|
||||
esp-hal-common = { version = "0.8.0", features = ["esp32s2"], path = "../esp-hal-common" }
|
||||
esp-hal-common = { version = "0.9.0", features = ["esp32s2"], path = "../esp-hal-common" }
|
||||
xtensa-atomic-emulation-trap = { version = "0.4.0" }
|
||||
|
||||
[dev-dependencies]
|
||||
aes = "0.8.2"
|
||||
critical-section = "1.1.1"
|
||||
crypto-bigint = {version = "0.5.1",default-features = false}
|
||||
crypto-bigint = { version = "0.5.2", default-features = false}
|
||||
embassy-executor = { version = "0.2.0", features = ["nightly", "integrated-timers", "arch-xtensa", "executor-thread"] }
|
||||
embedded-graphics = "0.7.1"
|
||||
esp-alloc = "0.3.0"
|
||||
esp-backtrace = { version = "0.7.0", features = ["esp32s2", "panic-handler", "print-uart", "exception-handler"] }
|
||||
esp-hal-smartled = { version = "0.1.0", features = ["esp32s2"], path = "../esp-hal-smartled" }
|
||||
esp-hal-smartled = { version = "0.2.0", features = ["esp32s2"], path = "../esp-hal-smartled" }
|
||||
esp-println = { version = "0.5.0", features = ["esp32s2"] }
|
||||
sha2 = { version = "0.10.6", default-features = false}
|
||||
smart-leds = "0.3.0"
|
||||
@ -48,7 +49,6 @@ ssd1306 = "0.7.1"
|
||||
static_cell = "1.0.0"
|
||||
usb-device = { version = "0.2.9" }
|
||||
usbd-serial = "0.1.1"
|
||||
esp-alloc = "0.3.0"
|
||||
|
||||
[features]
|
||||
default = ["rt", "vectored"]
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "esp32s3-hal"
|
||||
version = "0.8.0"
|
||||
version = "0.9.0"
|
||||
authors = [
|
||||
"Jesse Braham <jesse@beta7.io>",
|
||||
"Björn Quentin <bjoern.quentin@mobile-j.de>",
|
||||
@ -32,17 +32,17 @@ embedded-hal-1 = { version = "=1.0.0-alpha.10", optional = true, package = "
|
||||
embedded-hal-async = { version = "0.2.0-alpha.1", optional = true }
|
||||
embedded-hal-nb = { version = "=1.0.0-alpha.2", optional = true }
|
||||
embedded-can = { version = "0.4.1", optional = true }
|
||||
esp-hal-common = { version = "0.8.0", features = ["esp32s3"], path = "../esp-hal-common" }
|
||||
esp-hal-common = { version = "0.9.0", features = ["esp32s3"], path = "../esp-hal-common" }
|
||||
r0 = { version = "1.0.0", optional = true }
|
||||
|
||||
[dev-dependencies]
|
||||
aes = "0.8.2"
|
||||
critical-section = "1.1.1"
|
||||
crypto-bigint = {version = "0.5.1",default-features = false}
|
||||
crypto-bigint = { version = "0.5.2", default-features = false}
|
||||
embassy-executor = { version = "0.2.0", features = ["nightly", "integrated-timers", "arch-xtensa", "executor-thread"] }
|
||||
embedded-graphics = "0.7.1"
|
||||
esp-backtrace = { version = "0.7.0", features = ["esp32s3", "panic-handler", "exception-handler", "print-uart"] }
|
||||
esp-hal-smartled = { version = "0.1.0", features = ["esp32s3"], path = "../esp-hal-smartled" }
|
||||
esp-hal-smartled = { version = "0.2.0", features = ["esp32s3"], path = "../esp-hal-smartled" }
|
||||
esp-println = { version = "0.5.0", features = ["esp32s3"] }
|
||||
sha2 = { version = "0.10.6", default-features = false}
|
||||
smart-leds = "0.3.0"
|
||||
|
||||
Loading…
Reference in New Issue
Block a user