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 11e32fc4..ecad515e 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 352622d5..c8aff687 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