From 7ace11ae9e978dbeba4d0718dfe7203c550a36cc Mon Sep 17 00:00:00 2001 From: Ashley Mannix Date: Thu, 2 May 2019 12:10:14 +1000 Subject: [PATCH] prepare for 1.0.5 release --- CHANGELOG.md | 12 ++++++++++++ Cargo.toml | 2 +- src/lib.rs | 2 +- 3 files changed, 14 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 15e8edbb..32a4f95d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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]) diff --git a/Cargo.toml b/Cargo.toml index 1226f7c4..9742811d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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"] diff --git a/src/lib.rs b/src/lib.rs index 6b5b4128..c23d5bb0 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -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]