From df47bb37b1fbe07c0d6098fe5f612a74e99ff6f9 Mon Sep 17 00:00:00 2001 From: KodrAus Date: Mon, 20 Feb 2023 09:21:33 +1000 Subject: [PATCH 1/2] prepare for 2.0.0-rc.3 release --- CHANGELOG.md | 4 ++++ Cargo.toml | 2 +- README.md | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index dfd464ff..c2810a6b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +# 2.0.0-rc.3 + + + # 2.0.0-rc.2 ## Changes to `serde` serialization diff --git a/Cargo.toml b/Cargo.toml index d43634e6..ded3a800 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.0.0-rc.2" +version = "2.0.0-rc.3" edition = "2018" authors = ["The Rust Project Developers"] license = "MIT OR Apache-2.0" diff --git a/README.md b/README.md index 9804ab2f..a619d0a6 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ Add this to your `Cargo.toml`: ```toml [dependencies] -bitflags = "2.0.0-rc.2" +bitflags = "2.0.0-rc.3" ``` and this to your source code: From 1cbb6a7d4256bc85f9e8c9e4cf6064f21c13e4bf Mon Sep 17 00:00:00 2001 From: KodrAus Date: Mon, 20 Feb 2023 09:23:09 +1000 Subject: [PATCH 2/2] add 2.0.0-rc.3 to the changelog --- CHANGELOG.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index c2810a6b..674d0289 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,13 @@ # 2.0.0-rc.3 +## What's Changed +* Use strip_prefix instead of starts_with + slice by @QuinnPainter in https://github.com/bitflags/bitflags/pull/301 +* Fix up some clippy lints by @KodrAus in https://github.com/bitflags/bitflags/pull/302 + +## New Contributors +* @QuinnPainter made their first contribution in https://github.com/bitflags/bitflags/pull/301 +**Full Changelog**: https://github.com/bitflags/bitflags/compare/2.0.0-rc.2...2.0.0-rc.3 # 2.0.0-rc.2