From 822aff2c9ba89aefbbd04bb3f21b85b90b26abf4 Mon Sep 17 00:00:00 2001 From: Martin Pool Date: Tue, 16 Jan 2024 08:52:42 -0800 Subject: [PATCH] chore: Release --- CITATION.cff | 2 +- Cargo.lock | 2 +- Cargo.toml | 2 +- NEWS.md | 1 + 4 files changed, 4 insertions(+), 3 deletions(-) diff --git a/CITATION.cff b/CITATION.cff index 10af12b3..b5a7c823 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -18,4 +18,4 @@ message: Please cite this project using these information. repository-code: https://github.com/sourcefrog/cargo-mutants title: cargo-mutants url: https://mutants.rs/ -version: 24.1.0 +version: 24.1.1 diff --git a/Cargo.lock b/Cargo.lock index 53d1af09..bd9101e9 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -158,7 +158,7 @@ dependencies = [ [[package]] name = "cargo-mutants" -version = "24.1.0" +version = "24.1.1" dependencies = [ "anyhow", "assert_cmd", diff --git a/Cargo.toml b/Cargo.toml index 97955ed5..e0910ee6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cargo-mutants" -version = "24.1.0" +version = "24.1.1" edition = "2021" authors = ["Martin Pool"] license = "MIT" diff --git a/NEWS.md b/NEWS.md index 4e575e5a..a067cd58 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,6 +1,7 @@ # cargo-mutants changelog ## Unreleased + ## 24.1.1 - New: Mutate `+, -, *, /, %, &, ^, |, <<, >>` binary ops, and their corresponding assignment ops like `+=`.