Skip to content

Commit 597d407

Browse files
authored
Merge pull request #334 from KodrAus/cargo/2.1.0
Prepare for 2.1.0 release
2 parents db4ce36 + c272a0f commit 597d407

4 files changed

Lines changed: 16 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
1+
# 2.1.0
2+
3+
## What's Changed
4+
* Add docs for the internal Field0 and examples of formatting/parsing by @KodrAus in https://github.com/bitflags/bitflags/pull/328
5+
* Add support for arbitrary by @KodrAus in https://github.com/bitflags/bitflags/pull/324
6+
* Fix up missing docs for consts within consts by @KodrAus in https://github.com/bitflags/bitflags/pull/330
7+
* Ignore clippy lint in generated code by @Jake-Shadle in https://github.com/bitflags/bitflags/pull/331
8+
9+
## New Contributors
10+
* @Jake-Shadle made their first contribution in https://github.com/bitflags/bitflags/pull/331
11+
12+
**Full Changelog**: https://github.com/bitflags/bitflags/compare/2.0.2...2.1.0
13+
114
# 2.0.2
215

316
## What's Changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "bitflags"
33
# NB: When modifying, also modify:
44
# 1. html_root_url in lib.rs
55
# 2. number in readme (for breaking changes)
6-
version = "2.0.2"
6+
version = "2.1.0"
77
edition = "2021"
88
rust-version = "1.56.0"
99
authors = ["The Rust Project Developers"]

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Add this to your `Cargo.toml`:
1717

1818
```toml
1919
[dependencies]
20-
bitflags = "2.0.2"
20+
bitflags = "2.1.0"
2121
```
2222

2323
and this to your source code:

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -394,7 +394,7 @@
394394
//! example docs.
395395
396396
#![cfg_attr(not(any(feature = "std", test)), no_std)]
397-
#![doc(html_root_url = "https://docs.rs/bitflags/2.0.2")]
397+
#![doc(html_root_url = "https://docs.rs/bitflags/2.1.0")]
398398
#![forbid(unsafe_code)]
399399

400400
#[doc(inline)]

0 commit comments

Comments
 (0)