From bfc76435813d203ad5e0e8b2f0ccf7458d513253 Mon Sep 17 00:00:00 2001 From: Dominic Date: Sat, 20 Mar 2021 22:29:40 +0100 Subject: [PATCH] Release borrow-bag 1.1.0 --- gotham/Cargo.toml | 2 +- misc/borrow_bag/Cargo.toml | 2 +- misc/borrow_bag/src/lib.rs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/gotham/Cargo.toml b/gotham/Cargo.toml index 77afa1e07..652f0ace6 100644 --- a/gotham/Cargo.toml +++ b/gotham/Cargo.toml @@ -31,7 +31,7 @@ mime_guess = "2.0.1" futures = "0.3.1" tokio = { version = "1.0", features = ["net", "rt-multi-thread", "time", "fs", "io-util"] } bytes = "1.0" -borrow-bag = { path = "../misc/borrow_bag", version = "1.0" } +borrow-bag = { path = "../misc/borrow_bag", version = "1.1" } percent-encoding = "2.1" pin-project = "1.0.0" uuid = { version = "0.8", features = ["v4"] } diff --git a/misc/borrow_bag/Cargo.toml b/misc/borrow_bag/Cargo.toml index 4cb152fa7..427a62c7a 100644 --- a/misc/borrow_bag/Cargo.toml +++ b/misc/borrow_bag/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "borrow-bag" -version = "1.0.0" +version = "1.1.0" # Alter html_root_url in lib.rs also authors = ["Shaun Mangelsdorf ", "Bradley Beddoes "] description = "A type-safe, heterogeneous collection with zero-cost add and borrow" diff --git a/misc/borrow_bag/src/lib.rs b/misc/borrow_bag/src/lib.rs index 1135950c0..a42b6afee 100644 --- a/misc/borrow_bag/src/lib.rs +++ b/misc/borrow_bag/src/lib.rs @@ -4,7 +4,7 @@ //! the value back later. As the `BorrowBag` is add-only, `Handle` values remain valid for the //! lifetime of the `BorrowBag`. -#![doc(html_root_url = "https://docs.rs/borrow-bag/1.0.0")] // Update when changed in Cargo.toml +#![doc(html_root_url = "https://docs.rs/borrow-bag/1.1.0")] // Update when changed in Cargo.toml #![warn(missing_docs, deprecated)] // Stricter requirements once we get to pull request stage, all warnings must be resolved. #![cfg_attr(feature = "ci", deny(warnings))]