From 764d7e26af20a20f778e2ae1deac99106c182fc6 Mon Sep 17 00:00:00 2001 From: bill fumerola Date: Wed, 22 Oct 2025 11:50:50 -0700 Subject: [PATCH 1/2] chore(msrv): stablize 'let' statements edition 2024 existed in rust versions previous to 1.88, but 'let' chaining syntax had not yet settled down. used > This feature was stabilized in 1.88.0 but on edition 2024 only. c.f. rust-lang/rust#53667 --- Cargo.toml | 1 + bin/Cargo.toml | 1 + 2 files changed, 2 insertions(+) diff --git a/Cargo.toml b/Cargo.toml index 07e43308..a1bbc97a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -6,6 +6,7 @@ members = ["bin", "lib", "macros", "vfs"] [workspace.package] edition = "2024" license = "MIT" +rust-version = "1.88.0" [workspace.dependencies] anyhow = "1.0.100" diff --git a/bin/Cargo.toml b/bin/Cargo.toml index 0f6ad73a..246e7d18 100644 --- a/bin/Cargo.toml +++ b/bin/Cargo.toml @@ -3,6 +3,7 @@ authors = ["Akshay "] description = "Lints and suggestions for the Nix programming language" edition.workspace = true license.workspace = true +rust-version.workspace = true name = "statix" version = "0.5.8" From 85ef8afe5461ba835663de51580451571945978f Mon Sep 17 00:00:00 2001 From: bill fumerola Date: Wed, 22 Oct 2025 12:41:54 -0700 Subject: [PATCH 2/2] chore(version): back to pre-release --- bin/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/Cargo.toml b/bin/Cargo.toml index 246e7d18..6b04805b 100644 --- a/bin/Cargo.toml +++ b/bin/Cargo.toml @@ -5,7 +5,7 @@ edition.workspace = true license.workspace = true rust-version.workspace = true name = "statix" -version = "0.5.8" +version = "0.5.9-pre" [lib] name = "statix"