Skip to content

Commit

Permalink
New release
Browse files Browse the repository at this point in the history
  • Loading branch information
ivmarkov committed Jan 2, 2025
1 parent 77f9c75 commit 17b1f26
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 8 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ 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]
## [0.45.0] - 2025-01-02

### Deprecated

Expand All @@ -16,6 +16,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- UART default baud rate changed from 19'200 to 115'200

### Added
- Compatibility with ESP-IDF v5.3.X
- Docs: Add some docstrings for ADC module. (#455)
- Update uart.rs, add rs485 half duplex (#456)
- Update spi.rs, fix half3wire read (#459)
Expand Down
10 changes: 3 additions & 7 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "esp-idf-hal"
version = "0.44.1"
version = "0.45.0"
authors = ["sapir <[email protected]>", "Ivan Markov <[email protected]>"]
edition = "2021"
resolver = "2"
Expand All @@ -15,10 +15,6 @@ build = "build.rs"
documentation = "https://docs.esp-rs.org/esp-idf-hal/"
rust-version = "1.75"

[patch.crates-io]
embuild = { git = "https://github.com/esp-rs/embuild" }
esp-idf-sys = { git = "https://github.com/esp-rs/esp-idf-sys" }

[lib]
harness = false

Expand Down Expand Up @@ -56,7 +52,7 @@ embedded-hal-nb = "1"
embedded-hal-async = "1"
embedded-io = "0.6"
embedded-io-async = "0.6"
esp-idf-sys = { version = "0.35", default-features = false }
esp-idf-sys = { version = "0.36", default-features = false }
critical-section = { version = "1.1.1", optional = true, features = ["restore-state-none"] }
heapless = "0.8"
num_enum = { version = "0.7", default-features = false }
Expand All @@ -66,7 +62,7 @@ atomic-waker = { version = "1.1.1", default-features = false }
embassy-sync = { version = "0.6" }

[build-dependencies]
embuild = "0.32"
embuild = "0.33"

[dev-dependencies]
anyhow = "1"
Expand Down

0 comments on commit 17b1f26

Please sign in to comment.