diff --git a/CHANGELOG.md b/CHANGELOG.md index cbeabac2..2e97608d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,17 @@ +# 2.4.0 + +## What's Changed +* Remove html_root_url by @eldruin in https://github.com/bitflags/bitflags/pull/368 +* Support unnamed flags by @KodrAus in https://github.com/bitflags/bitflags/pull/371 +* Update smoke test to verify all Clippy and rustc lints by @MitMaro in https://github.com/bitflags/bitflags/pull/374 +* Specify the behavior of bitflags by @KodrAus in https://github.com/bitflags/bitflags/pull/369 + +## New Contributors +* @eldruin made their first contribution in https://github.com/bitflags/bitflags/pull/368 +* @MitMaro made their first contribution in https://github.com/bitflags/bitflags/pull/374 + +**Full Changelog**: https://github.com/bitflags/bitflags/compare/2.3.3...2.4.0 + # 2.3.3 ## Changes to `-=` diff --git a/Cargo.toml b/Cargo.toml index 2de32107..d350326b 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.3.3" +version = "2.4.0" edition = "2021" rust-version = "1.56.0" authors = ["The Rust Project Developers"] diff --git a/README.md b/README.md index bb7c64a1..39224533 100644 --- a/README.md +++ b/README.md @@ -28,7 +28,7 @@ Add this to your `Cargo.toml`: ```toml [dependencies] -bitflags = "2.3.3" +bitflags = "2.4.0" ``` and this to your source code: diff --git a/src/lib.rs b/src/lib.rs index 28f4fb8e..3d5377b8 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -17,7 +17,7 @@ Add `bitflags` to your `Cargo.toml`: ```toml [dependencies.bitflags] -version = "2.3.3" +version = "2.4.0" ``` ## Generating flags types