Skip to content

Commit

Permalink
Release borrow-bag 1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
msrd0 committed Mar 20, 2021
1 parent 32c43d8 commit bfc7643
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion gotham/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"] }
Expand Down
2 changes: 1 addition & 1 deletion misc/borrow_bag/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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 <[email protected]>",
"Bradley Beddoes <[email protected]>"]
description = "A type-safe, heterogeneous collection with zero-cost add and borrow"
Expand Down
2 changes: 1 addition & 1 deletion misc/borrow_bag/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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))]
Expand Down

0 comments on commit bfc7643

Please sign in to comment.