Skip to content

Commit

Permalink
Merge #181
Browse files Browse the repository at this point in the history
181: Prepare for 1.1.0 release r=KodrAus a=KodrAus

Closes #178

Now that #177 has been solved upstream in `1.35.0`, we can republish the `bitflags` that includes support for constant functions.

I opted to make this `1.1.0` rather than `1.0.6` since it's possible folks are still using older compilers that will break, and `1.0.5` probably should've been `1.1.0` anyways, since it was just fixing bugs.

Co-authored-by: Ashley Mannix <ashleymannix@live.com.au>
  • Loading branch information
bors[bot] and KodrAus committed Jun 6, 2019
2 parents d06e657 + 5384c5d commit fffdfe8
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,7 @@
# 1.1.0

This is a re-release of `1.0.5`, which was yanked due to a bug in the RLS.

# 1.0.5

- Use compiletest_rs flags supported by stable toolchain ([#171])
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
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.0.5"
version = "1.1.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
Expand Up @@ -247,7 +247,7 @@
//! ```

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

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

0 comments on commit fffdfe8

Please sign in to comment.