From 96ba9cf3a9f9fdaef752c51a1478ad89ddfe9134 Mon Sep 17 00:00:00 2001 From: KodrAus Date: Mon, 16 Oct 2023 08:18:48 +1000 Subject: [PATCH] prepare for 2.4.1 release --- CHANGELOG.md | 7 +++++++ Cargo.toml | 2 +- README.md | 2 +- src/lib.rs | 2 +- 4 files changed, 10 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2e97608d..5081ed57 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +# 2.4.1 + +## What's Changed +* Allow some new pedantic clippy lints by @KodrAus in https://github.com/bitflags/bitflags/pull/380 + +**Full Changelog**: https://github.com/bitflags/bitflags/compare/2.4.0...2.4.1 + # 2.4.0 ## What's Changed diff --git a/Cargo.toml b/Cargo.toml index d350326b..1789ee14 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "bitflags" # NB: When modifying, also modify the number in readme (for breaking changes) -version = "2.4.0" +version = "2.4.1" edition = "2021" rust-version = "1.56.0" authors = ["The Rust Project Developers"] diff --git a/README.md b/README.md index 39224533..94950673 100644 --- a/README.md +++ b/README.md @@ -28,7 +28,7 @@ Add this to your `Cargo.toml`: ```toml [dependencies] -bitflags = "2.4.0" +bitflags = "2.4.1" ``` and this to your source code: diff --git a/src/lib.rs b/src/lib.rs index 3d5377b8..7b6c5f47 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -17,7 +17,7 @@ Add `bitflags` to your `Cargo.toml`: ```toml [dependencies.bitflags] -version = "2.4.0" +version = "2.4.1" ``` ## Generating flags types