From fdd6e092c7a264b392a513416c54d1dbef42f0eb Mon Sep 17 00:00:00 2001 From: ivmarkov Date: Thu, 2 Jan 2025 12:49:55 +0000 Subject: [PATCH] New release --- CHANGELOG.md | 4 +++- Cargo.toml | 7 ++----- 2 files changed, 5 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d80e85e020..afcda01fea 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,13 +5,15 @@ 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.36.0] - 2025-01-02 ### Deprecated ### Breaking +- Updated the `embuild` dependency ### Added +- Compatibility with ESP-IDF v5.3.X - Add raw bindings for `sdio_slave.h` for all targets that support it and add `onewire_bus.h` (#322) - Add raw bindings for `onewire_device.h` - Add raw bindings for `esp_netif_ppp.h` diff --git a/Cargo.toml b/Cargo.toml index 22fa8e5146..4bc9d57bed 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "esp-idf-sys" -version = "0.35.0" +version = "0.36.0" authors = ["Alexey Arbuzov ", "sapir ", "Ivan Markov ", "Dominik Gschwind "] edition = "2021" resolver = "2" @@ -15,9 +15,6 @@ build = "build/build.rs" documentation = "https://docs.esp-rs.org/esp-idf-sys/" rust-version = "1.66" -[patch.crates-io] -embuild = { git = "https://github.com/esp-rs/embuild" } - [lib] harness = false @@ -38,7 +35,7 @@ build-time = "0.1" # For esp_app_desc!() const_format = "0.2" # For esp_app_desc!() [build-dependencies] -embuild = { version = "0.32", features = ["glob", "kconfig", "cmake", "espidf"] } +embuild = { version = "0.33", features = ["glob", "kconfig", "cmake", "espidf"] } anyhow = "1" regex = "1.5" cmake = "0.1.52"