From 5384c5d5bd6ff91f4cc0c2108bd5be047366179e Mon Sep 17 00:00:00 2001 From: Ashley Mannix Date: Thu, 6 Jun 2019 09:48:16 +1000 Subject: [PATCH] prepare for 1.1.0 release --- CHANGELOG.md | 4 ++++ Cargo.toml | 2 +- src/lib.rs | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 32a4f95d..0975b09e 100644 --- a/CHANGELOG.md +++ b/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]) diff --git a/Cargo.toml b/Cargo.toml index 9742811d..661f1037 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.5" +version = "1.1.0" 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 c23d5bb0..20ed5802 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.5")] +#![doc(html_root_url = "https://docs.rs/bitflags/1.1.0")] #[cfg(test)] #[macro_use]