From db9b9f41413f4e6a2815d358d5c12723944a21bd Mon Sep 17 00:00:00 2001 From: KodrAus Date: Tue, 13 Jun 2023 15:15:02 +1000 Subject: [PATCH] prepare for 2.3.2 release --- CHANGELOG.md | 10 ++++++++++ Cargo.toml | 2 +- README.md | 2 +- src/lib.rs | 2 +- 4 files changed, 13 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 63b4c9c1..5512cebf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,13 @@ +# 2.3.2 + +## What's Changed +* [doc] [src/lib.rs] delete redundant path prefix by @OccupyMars2025 in https://github.com/bitflags/bitflags/pull/361 + +## New Contributors +* @OccupyMars2025 made their first contribution in https://github.com/bitflags/bitflags/pull/361 + +**Full Changelog**: https://github.com/bitflags/bitflags/compare/2.3.1...2.3.2 + # 2.3.1 ## What's Changed diff --git a/Cargo.toml b/Cargo.toml index 2e4b69b3..7d578821 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.1" +version = "2.3.2" edition = "2021" rust-version = "1.56.0" authors = ["The Rust Project Developers"] diff --git a/README.md b/README.md index 86e5a68c..fada7a6c 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ Add this to your `Cargo.toml`: ```toml [dependencies] -bitflags = "2.3.1" +bitflags = "2.3.2" ``` and this to your source code: diff --git a/src/lib.rs b/src/lib.rs index 8205f6a1..3d0869ac 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.1")] +#![doc(html_root_url = "https://docs.rs/bitflags/2.3.2")] #[doc(inline)] pub use traits::{Flags, Flag, Bits};