diff --git a/.coderabbit.yaml b/.coderabbit.yaml index 130cb02..5901b6b 100644 --- a/.coderabbit.yaml +++ b/.coderabbit.yaml @@ -5,8 +5,8 @@ early_access: false reviews: profile: chill request_changes_workflow: true - # Publish only the legacy commit status consumed by the main-branch ruleset. - # The review-progress path creates a second GitHub check run for the same review. + # Publish the legacy commit status consumed by the main-branch ruleset. + # Keep review_progress off until CodeRabbit can publish the required check run. review_progress: false commit_status: true fail_commit_status: true diff --git a/AGENTS.md b/AGENTS.md index ad42436..0e38bdf 100644 --- a/AGENTS.md +++ b/AGENTS.md @@ -207,7 +207,7 @@ When user requests commit message generation: ### Rust -- The current MSRV and pinned contributor/CI toolchain are Rust 1.97.0. Keep +- The current MSRV and pinned contributor/CI toolchain are Rust 1.97.1. Keep `Cargo.toml`, `rust-toolchain.toml`, and `clippy.toml` aligned when that baseline changes deliberately. - Prefer borrowed APIs by default: diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index a3ebf0e..a1a5040 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -6,7 +6,7 @@ clarity, and the fixed-dimension stack-allocation model. ## Getting Started -Install Rust 1.97.0 through [rustup](https://rustup.rs/), Git, Python 3.14, +Install Rust 1.97.1 through [rustup](https://rustup.rs/), Git, Python 3.14, [`uv` 0.12.0](https://docs.astral.sh/uv/), and `jq`. Install the repository's pinned `just` version from its locked dependency graph: diff --git a/Cargo.toml b/Cargo.toml index 099946d..332769a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,7 +2,7 @@ name = "la-stack" version = "0.4.4" edition = "2024" -rust-version = "1.97.0" +rust-version = "1.97.1" license = "BSD-3-Clause" description = "Fast, stack-allocated linear algebra for fixed dimensions" readme = "README.md" diff --git a/README.md b/README.md index 303bc3f..e27ee6b 100644 --- a/README.md +++ b/README.md @@ -570,7 +570,7 @@ cargo run --features exact --example exact_solve_3x3 A short contributor workflow: -Install Rust 1.97.0 through [rustup](https://rustup.rs/), Git, Python 3.14, +Install Rust 1.97.1 through [rustup](https://rustup.rs/), Git, Python 3.14, [`uv` 0.12.0](https://docs.astral.sh/uv/), and `jq`. Then install the pinned `just` release from its locked dependency graph: diff --git a/clippy.toml b/clippy.toml index 0894395..3b3d5b6 100644 --- a/clippy.toml +++ b/clippy.toml @@ -1,6 +1,6 @@ # Clippy configuration for the la-stack crate. # Keep lint behavior aligned with Cargo.toml and rust-toolchain.toml. -msrv = "1.97.0" +msrv = "1.97.1" # Lint levels are owned by Cargo.toml. diff --git a/docs/RELEASING.md b/docs/RELEASING.md index 6efc765..ec78875 100644 --- a/docs/RELEASING.md +++ b/docs/RELEASING.md @@ -14,7 +14,7 @@ to crates.io. ## Conventions and environment -The current MSRV and pinned release-validation toolchain are Rust 1.97.0. Keep +The current MSRV and pinned release-validation toolchain are Rust 1.97.1. Keep `Cargo.toml`, `rust-toolchain.toml`, and `clippy.toml` aligned whenever a future release deliberately changes that baseline. diff --git a/justfile b/justfile index 14b9110..86d9ce4 100644 --- a/justfile +++ b/justfile @@ -204,11 +204,12 @@ bench-compare baseline="last" suite="all" scope="release-signal": python-sync baseline={{ quote(baseline) }} uv run --locked bench-compare "$baseline" --suite {{ quote(suite) }} --scope {{ quote(scope) }} -# Compile benchmarks without running them, treating warnings as errors. +# Compile benchmarks without running them, treating warnings as errors through +# Cargo so warning policy does not create separate rustc cache artifacts. # This catches bench/release-profile-only warnings that won't show up in normal debug-profile runs. bench-compile: - RUSTFLAGS='-D warnings' cargo bench --locked --no-run --features bench - RUSTFLAGS='-D warnings' cargo bench --locked --no-run --features bench,exact --bench exact + CARGO_BUILD_WARNINGS=deny cargo bench --locked --no-run --features bench + CARGO_BUILD_WARNINGS=deny cargo bench --locked --no-run --features bench,exact --bench exact # Run the exact-arithmetic benchmark suite. bench-exact: diff --git a/rust-toolchain.toml b/rust-toolchain.toml index 825be0b..ec4f6a3 100644 --- a/rust-toolchain.toml +++ b/rust-toolchain.toml @@ -1,6 +1,6 @@ [toolchain] # Pin to MSRV as specified in Cargo.toml -channel = "1.97.0" +channel = "1.97.1" # Essential repository components. Keep checkout and CI setup lean; workflows # install additional targets or components when they need them.