From 8cfcf13439f4d1934d445f0e74553214d864105c Mon Sep 17 00:00:00 2001 From: Martin Pool Date: Sat, 23 Dec 2023 18:38:35 +1000 Subject: [PATCH] Prepare 23.12.2! --- Cargo.lock | 2 +- Cargo.toml | 9 +++++++-- NEWS.md | 2 +- 3 files changed, 9 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index e1f95fa0..2b44ce51 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -158,7 +158,7 @@ dependencies = [ [[package]] name = "cargo-mutants" -version = "23.12.2-pre" +version = "23.12.2" dependencies = [ "anyhow", "assert_cmd", diff --git a/Cargo.toml b/Cargo.toml index a49106f3..68886ef1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cargo-mutants" -version = "23.12.2-pre" +version = "23.12.2" edition = "2021" authors = ["Martin Pool"] license = "MIT" @@ -148,7 +148,12 @@ ci = ["github"] # The installers to generate for each app installers = ["shell", "powershell"] # Target platforms to build apps for (Rust target-triple syntax) -targets = ["x86_64-unknown-linux-gnu", "aarch64-apple-darwin", "x86_64-apple-darwin", "x86_64-pc-windows-msvc"] +targets = [ + "x86_64-unknown-linux-gnu", + "aarch64-apple-darwin", + "x86_64-apple-darwin", + "x86_64-pc-windows-msvc", +] # Publish jobs to run in CI pr-run-mode = "upload" diff --git a/NEWS.md b/NEWS.md index 29d46cee..1c90563d 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,6 +1,6 @@ # cargo-mutants changelog -## Unreleased +## 23.12.2 - New: A `--shard k/n` allows you to split the work across n independent parallel `cargo mutants` invocations running on separate machines to get a faster overall solution on large suites. You, or your CI system, are responsible for launching all the shards and checking whether any of them failed.