Skip to content

Commit

Permalink
Merge pull request #358 from KodrAus/cargo/2.3.1
Browse files Browse the repository at this point in the history
Prepare for 2.3.1 release
  • Loading branch information
KodrAus committed May 17, 2023
2 parents 32d406a + 3d0c558 commit cf01ab0
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 3 deletions.
7 changes: 7 additions & 0 deletions 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
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Expand Up @@ -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"]
Expand Down
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Expand Up @@ -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};
Expand Down

0 comments on commit cf01ab0

Please sign in to comment.