diff --git a/CHANGELOG.md b/CHANGELOG.md index fed6a53d..5c6df58b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +# 2.2.1 + +## What's Changed +* Refactor attribute filtering to apply per-flag by @KodrAus in https://github.com/bitflags/bitflags/pull/345 + +**Full Changelog**: https://github.com/bitflags/bitflags/compare/2.2.0...2.2.1 + # 2.2.0 ## What's Changed diff --git a/Cargo.toml b/Cargo.toml index 2e097b79..a2391324 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ name = "bitflags" # NB: When modifying, also modify: # 1. html_root_url in lib.rs # 2. number in readme (for breaking changes) -version = "2.2.0" +version = "2.2.1" edition = "2021" rust-version = "1.56.0" authors = ["The Rust Project Developers"] diff --git a/README.md b/README.md index 8cf740bb..f9a5bb4a 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ Add this to your `Cargo.toml`: ```toml [dependencies] -bitflags = "2.2.0" +bitflags = "2.2.1" ``` and this to your source code: diff --git a/src/lib.rs b/src/lib.rs index 18138bf5..d28fd87f 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -423,7 +423,7 @@ #![cfg_attr(not(any(feature = "std", test)), no_std)] #![cfg_attr(not(test), forbid(unsafe_code))] -#![doc(html_root_url = "https://docs.rs/bitflags/2.2.0")] +#![doc(html_root_url = "https://docs.rs/bitflags/2.2.1")] #[doc(inline)] pub use traits::BitFlags;