New release

This commit is contained in:
ivmarkov 2023-05-13 15:34:30 +00:00
parent f2f5b830f6
commit 8059a2d14c
2 changed files with 19 additions and 5 deletions

View File

@ -5,6 +5,20 @@ 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).
## [0.41.0] - 2023-05-13
* MSRV 1.66 (but MSRV 1.70 necessary if `nightly` is enabled)
* Support for new chips: esp32c2, esp32h2, esp32c6 and future proofed for esp32c5 and esp32p4
* Support for ESP IDF 5.0, 5.1 and 5.2 (master)
* Support for `embedded-hal` 1.0-alpha.10 and `embedded-hal-async` 0.2.0-alpha.2 (API breakage in i2c and spi)
* Async GPIO native API with support for `embedded-hal-async`
* PCNT driver
* Alerts and Mode support in the TWAI driver
* Task Watchdog API
* Configurable interrupt levels in all drivers (minor API breakage in `SpiDriver`)
* `EspError::from_infallible`
* Auto-reload support in the timer driver
## [0.40.1] - 2022-12-13
Fix the build when the ULP peripheral is enabled.

View File

@ -1,6 +1,6 @@
[package]
name = "esp-idf-hal"
version = "0.40.1"
version = "0.41.0"
authors = ["sapir <yasapir@gmail.com>", "Ivan Markov <ivan.markov@gmail.com>"]
edition = "2018"
resolver = "2"
@ -30,10 +30,10 @@ embedded-can = "0.4.1"
embedded-hal = "=1.0.0-alpha.10"
embedded-hal-0-2 = { package = "embedded-hal", version = "0.2.7", features = ["unproven"] }
embedded-hal-nb = "=1.0.0-alpha.2"
esp-idf-sys = { version = "0.32.1", optional = true, default-features = false, features = ["native"] }
critical-section = { version = "1.1", optional = true }
esp-idf-sys = { version = "0.33", optional = true, default-features = false, features = ["native"] }
critical-section = { version = "1.1.1", optional = true }
heapless = "0.7"
embassy-sync = { version = "0.1", optional = true }
embassy-sync = { version = "0.2", optional = true }
edge-executor = { version = "0.3", optional = true, default-features = false }
enumset = { version = "1", default-features = false }
embedded-hal-async = { version = "0.2.0-alpha.1", optional = true }
@ -45,7 +45,7 @@ anyhow = "1"
[dev-dependencies]
anyhow = "1"
esp-idf-sys = { version = "0.32", features = ["native", "binstart"] }
esp-idf-sys = { version = "0.33", features = ["native", "binstart"] }
mipidsi = "0.5.0"
display-interface-spi = "0.4.1"
embedded-graphics = "0.7.1"