From 7a7e26a7f9b9dd9526d225a8e49519d07bda2a16 Mon Sep 17 00:00:00 2001 From: zackees Date: Tue, 30 Jun 2026 11:21:15 -0700 Subject: [PATCH] chore: bump version to 2.3.15 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Rolls up the fixes shipped since 2.3.14: - #855 (#883) — drop stale standalone-zccache CI/Docker/docs references after the soldr embedded-zccache transition (soldr#977/#980/#1081) - #865 (#884) — write daemon status via sync write_atomic; unblocks fbuild-daemon unit tests on macOS/Windows by eliminating the block_in_place panic in current-thread tokio runtimes - #875 (#885) — pin TMP/TEMP for compiler subprocess on Windows; ESP32 compile no longer fails with 'Cannot create temporary file in C:\Windows\' on the very first TU - #720 (#886) — record anti-removal policy for dump_usb_ids example - #829 (#887) — stage fbuild._native cdylib during source/editable install so 'from fbuild import ...' works after 'uv pip install -e .' Plus all prior #664 platform_packages audit work, the #826 testing followups, and the build cancellation fix from earlier in the cycle. --- Cargo.toml | 2 +- pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index c268fc11..5ef5679b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -50,7 +50,7 @@ exclude = [ libraries = [{ path = "dylints/*" }] [workspace.package] -version = "2.3.14" +version = "2.3.15" edition = "2021" rust-version = "1.94.1" license = "MIT OR Apache-2.0" diff --git a/pyproject.toml b/pyproject.toml index ccc96a8e..66bebd50 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "fbuild" -version = "2.3.14" +version = "2.3.15" description = "PlatformIO-compatible embedded build tool (Rust implementation)" readme = "README.md" requires-python = ">=3.10"