Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 14 additions & 14 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ exclude = ["dylints/ban_raw_subprocess"]
libraries = [{ path = "dylints/*" }]

[workspace.package]
version = "2.2.30"
version = "2.2.31"
edition = "2021"
rust-version = "1.94.1"
license = "MIT OR Apache-2.0"
Expand Down
4 changes: 2 additions & 2 deletions crates/fbuild-build/src/managed_zccache.rs
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,12 @@ use fbuild_core::{FbuildError, Result};

/// The zccache release fbuild pins. Bump in lockstep with the floor that
/// the rest of the toolchain expects.
pub const MANAGED_ZCCACHE_VERSION: &str = "1.12.8";
pub const MANAGED_ZCCACHE_VERSION: &str = "1.12.9";

/// GitHub release tag for [`MANAGED_ZCCACHE_VERSION`]. The zccache release
/// workflow tags without a `v` prefix, while the per-asset filenames carry
/// `v<version>` — keep both spellings in sync when bumping.
const RELEASE_TAG: &str = "1.12.8";
const RELEASE_TAG: &str = "1.12.9";

/// Source repository for managed downloads.
const REPO: &str = "zackees/zccache";
Expand Down
4 changes: 2 additions & 2 deletions crates/fbuild-daemon/src/models.rs
Original file line number Diff line number Diff line change
Expand Up @@ -845,11 +845,11 @@ mod tests {
current_operation: Some("Building /tmp/myproject".into()),
dependency_install: Some(fbuild_core::install_status::status(
"zccache",
Some("1.12.8"),
Some("1.12.9"),
fbuild_core::install_status::InstallPhase::WaitingForLock,
fbuild_core::install_status::InstallRole::Waiter,
"waiting for managed zccache",
Some(".zccache-1.12.8.install.lock"),
Some(".zccache-1.12.9.install.lock"),
)),
client_count: 1,
cache_dir: "/tmp/cache".into(),
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "fbuild"
version = "2.2.30"
version = "2.2.31"
description = "PlatformIO-compatible embedded build tool (Rust implementation)"
readme = "README.md"
requires-python = ">=3.10"
Expand Down
Loading