From 3d0c558c5d8ed0d9917ec52ad17e96636b990104 Mon Sep 17 00:00:00 2001 From: KodrAus Date: Thu, 18 May 2023 00:16:39 +1000 Subject: [PATCH] prepare for 2.3.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 e4e50582..63b4c9c1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +# 2.3.1 + +## What's Changed +* Fix Self in flags value expressions by @KodrAus in https://github.com/bitflags/bitflags/pull/355 + +**Full Changelog**: https://github.com/bitflags/bitflags/compare/2.3.0...2.3.1 + # 2.3.0 ## What's Changed diff --git a/Cargo.toml b/Cargo.toml index 2601d74a..2e4b69b3 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.3.0" +version = "2.3.1" edition = "2021" rust-version = "1.56.0" authors = ["The Rust Project Developers"] diff --git a/README.md b/README.md index 09c41449..86e5a68c 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ Add this to your `Cargo.toml`: ```toml [dependencies] -bitflags = "2.3.0" +bitflags = "2.3.1" ``` and this to your source code: diff --git a/src/lib.rs b/src/lib.rs index 9a0059f8..60e243d3 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -422,7 +422,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.3.0")] +#![doc(html_root_url = "https://docs.rs/bitflags/2.3.1")] #[doc(inline)] pub use traits::{Flags, Flag, Bits};