File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff 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 "
77edition = " 2021"
88rust-version = " 1.56.0"
99authors = [" The Rust Project Developers" ]
Original file line number Diff line number Diff 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
2323and this to your source code:
Original file line number Diff line number Diff line change 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) ]
You can’t perform that action at this time.
0 commit comments