Skip to content

Commit

Permalink
prepare for 1.2.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
KodrAus committed Sep 23, 2019
1 parent 4880a76 commit cde9cb6
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 2 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
# 1.2.0

- Fix typo: {Lower, Upper}Exp - {Lower, Upper}Hex ([#183])

- Add support for "unknown" bits ([#188])

[#183]: https://github.com/rust-lang-nursery/bitflags/pull/183
[#188]: https://github.com/rust-lang-nursery/bitflags/pull/188

# 1.1.0

This is a re-release of `1.0.5`, which was yanked due to a bug in the RLS.
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ name = "bitflags"
# NB: When modifying, also modify:
# 1. html_root_url in lib.rs
# 2. number in readme (for breaking changes)
version = "1.1.0"
version = "1.2.0"
authors = ["The Rust Project Developers"]
license = "MIT/Apache-2.0"
keywords = ["bit", "bitmask", "bitflags", "flags"]
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@
//! ```

#![no_std]
#![doc(html_root_url = "https://docs.rs/bitflags/1.1.0")]
#![doc(html_root_url = "https://docs.rs/bitflags/1.2.0")]

#[cfg(test)]
#[macro_use]
Expand Down

0 comments on commit cde9cb6

Please sign in to comment.