Skip to content

Commit

Permalink
Merge pull request #322 from KodrAus/cargo/2.0.2
Browse files Browse the repository at this point in the history
Prepare for 2.0.2 release
  • Loading branch information
KodrAus committed Mar 19, 2023
2 parents ce90a14 + bc750f1 commit 11640f1
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.0.2

## What's Changed
* Fix up missing isize and usize Bits impls by @KodrAus in https://github.com/bitflags/bitflags/pull/321

**Full Changelog**: https://github.com/bitflags/bitflags/compare/2.0.1...2.0.2

# 2.0.1

## 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.0.1"
version = "2.0.2"
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.0.1"
bitflags = "2.0.2"
```

and this to your source code:
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Expand Up @@ -344,7 +344,7 @@
//! ```

#![cfg_attr(not(any(feature = "std", test)), no_std)]
#![doc(html_root_url = "https://docs.rs/bitflags/2.0.0")]
#![doc(html_root_url = "https://docs.rs/bitflags/2.0.2")]
#![forbid(unsafe_code)]

#[doc(inline)]
Expand Down

0 comments on commit 11640f1

Please sign in to comment.