From 11de329ef17f18f2c57d1e03daf203dbbe60b211 Mon Sep 17 00:00:00 2001 From: KodrAus Date: Thu, 16 Mar 2023 11:52:02 +1000 Subject: [PATCH 1/2] prepare for 2.0.1 release --- Cargo.toml | 2 +- README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index cccc0089..16df5028 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" +version = "2.0.1" edition = "2021" rust-version = "1.56.0" authors = ["The Rust Project Developers"] diff --git a/README.md b/README.md index a68084ce..27ea34c0 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ Add this to your `Cargo.toml`: ```toml [dependencies] -bitflags = "2.0.0" +bitflags = "2.0.1" ``` and this to your source code: From 836eabbab2c6a1794a52cf3b7130f104e46b9a2d Mon Sep 17 00:00:00 2001 From: KodrAus Date: Thu, 16 Mar 2023 11:53:19 +1000 Subject: [PATCH 2/2] update changelog --- CHANGELOG.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1873cc0d..ade79aef 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,15 @@ +# 2.0.1 + +## What's Changed +* Fix up some docs issues by @KodrAus in https://github.com/bitflags/bitflags/pull/309 +* Make empty_flag() const. by @tormeh in https://github.com/bitflags/bitflags/pull/313 +* Fix formatting of multi-bit flags with partial overlap by @KodrAus in https://github.com/bitflags/bitflags/pull/316 + +## New Contributors +* @tormeh made their first contribution in https://github.com/bitflags/bitflags/pull/313 + +**Full Changelog**: https://github.com/bitflags/bitflags/compare/2.0.0...2.0.1 + # 2.0.0 ## What's Changed