From 13acdc3d4813ed6b90d38ae1541cead47271ba17 Mon Sep 17 00:00:00 2001 From: zackees Date: Wed, 1 Jul 2026 19:34:28 -0700 Subject: [PATCH] chore(release): bump 2.3.17 -> 2.3.18 to retry release with live Apple SDK MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit v2.3.16 and v2.3.17 release-auto runs both got cancelled because both mac cross-build lanes (aarch64-apple-darwin + x86_64-apple-darwin) failed with: soldr: network error: Apple SDK download failed: HTTP 404 Not Found The URL in question — media.githubusercontent.com/media/zackees/ soldr-toolchain/assets/apple-sdk/MacOSX11.3/darwin-universal2/ sdk.tar.zstd — is now returning 200 OK with Content-Length 52644445. GitHub LFS bandwidth quota (likely the 404 root cause) appears to have reset. Bump to 2.3.18 to trigger a fresh release-auto. If mac still 404s, we go back to waiting on soldr upstream. If it works, 2.3.18 finally ships to PyPI, unblocking FastLED's LPC lanes that are pinned to fbuild==2.3.15 (needs the framework-arduino- lpc8xx ACLPC_CHECKSUM update from fbuild#915). Co-Authored-By: Claude Opus 4.7 (1M context) --- Cargo.toml | 2 +- pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index a1303fb8..ef016994 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -61,7 +61,7 @@ exclude = [ libraries = [{ path = "dylints/*" }] [workspace.package] -version = "2.3.17" +version = "2.3.18" edition = "2021" rust-version = "1.94.1" license = "MIT OR Apache-2.0" diff --git a/pyproject.toml b/pyproject.toml index 33d2b1f7..bc2b28ec 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "fbuild" -version = "2.3.17" +version = "2.3.18" description = "PlatformIO-compatible embedded build tool (Rust implementation)" readme = "README.md" requires-python = ">=3.10"