176: Prepare for 1.0.5 release r=KodrAus a=KodrAus

[Diff since the last release](https://github.com/bitflags/bitflags/compare/1.0.4...master)

Includes:

- #171 
- #173 
- #175 

Co-authored-by: Ashley Mannix <ashleymannix@live.com.au>
This commit is contained in:
bors[bot]
2019-05-02 02:13:38 +00:00
3 changed files with 14 additions and 2 deletions
+12
View File
@@ -1,3 +1,15 @@
# 1.0.5
- Use compiletest_rs flags supported by stable toolchain ([#171])
- Put the user provided attributes first ([#173])
- Make bitflags methods `const` on newer compilers ([#175])
[#171]: https://github.com/rust-lang-nursery/bitflags/pull/171
[#173]: https://github.com/rust-lang-nursery/bitflags/pull/173
[#175]: https://github.com/rust-lang-nursery/bitflags/pull/175
# 1.0.4
- Support Rust 2018 style macro imports ([#165])
+1 -1
View File
@@ -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.4"
version = "1.0.5"
authors = ["The Rust Project Developers"]
license = "MIT/Apache-2.0"
keywords = ["bit", "bitmask", "bitflags", "flags"]
+1 -1
View File
@@ -247,7 +247,7 @@
//! ```
#![no_std]
#![doc(html_root_url = "https://docs.rs/bitflags/1.0.4")]
#![doc(html_root_url = "https://docs.rs/bitflags/1.0.5")]
#[cfg(test)]
#[macro_use]