Skip to content

Commit 702a03a

Browse files
committed
Release gotham 0.7.2, gotham_middleware_diesel 0.5.1 and borrow-bag 1.1.1
1 parent d297855 commit 702a03a

File tree

6 files changed

+9
-9
lines changed

6 files changed

+9
-9
lines changed

gotham/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "gotham"
3-
version = "0.7.1" # Alter html_root_url in lib.rs also
3+
version = "0.7.2" # Alter html_root_url in lib.rs also
44
authors = ["Shaun Mangelsdorf <[email protected]>",
55
"Colin Bankier <[email protected]>",
66
"Dominic Meiser <[email protected]>",
@@ -26,7 +26,7 @@ session = ["bincode", "linked-hash-map"]
2626
testing = ["hyper/client"]
2727

2828
[dependencies]
29-
borrow-bag = { path = "../misc/borrow_bag", version = "1.1" }
29+
borrow-bag = { path = "../misc/borrow_bag", version = "1.1.1" }
3030
gotham_derive = { path = "../gotham_derive", version = "0.7.1", optional = true }
3131

3232
anyhow = "1.0.5"

gotham/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
//! You can find out more about Gotham, including where to get help, at <https://gotham.rs>.
44
//!
55
//! We look forward to welcoming you into the Gotham community!
6-
#![doc(html_root_url = "https://docs.rs/gotham/0.7.1")] // Update when changed in Cargo.toml
6+
#![doc(html_root_url = "https://docs.rs/gotham/0.7.2")] // Update when changed in Cargo.toml
77
#![warn(deprecated, missing_docs, unreachable_pub)]
88
// Stricter requirements once we get to pull request stage, all warnings must be resolved.
99
#![cfg_attr(feature = "ci", deny(warnings))]

middleware/diesel/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "gotham_middleware_diesel"
3-
version = "0.5.0"
3+
version = "0.5.1"
44
authors = ["colinbankier <[email protected]>"]
55
edition = "2018"
66
description = "A Gotham Middleware that provides access to a Diesel connection via an R2D2 pool to allow other Middleware and Handlers to interact with a database."
@@ -12,14 +12,14 @@ categories = ["web-programming::http-server"]
1212
keywords = ["http", "async", "web", "gotham", "diesel"]
1313

1414
[dependencies]
15-
gotham = { path = "../../gotham", version = "0.7.1", default-features = false, features = ["derive"] }
15+
gotham = { path = "../../gotham", version = "0.7.2", default-features = false, features = ["derive"] }
1616

1717
diesel = { version = "2.1", features = ["r2d2"] }
1818
futures-util = "0.3.14"
1919
log = "0.4"
2020
tokio = { version = "1.0", features = ["full"] }
2121

2222
[dev-dependencies]
23-
gotham = { path = "../../gotham", version = "0.7.1", default-features = false, features = ["testing"] }
23+
gotham = { path = "../../gotham", version = "0.7.2", default-features = false, features = ["testing"] }
2424

2525
diesel = { version = "2.1", features = ["sqlite"] }

middleware/jwt/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ edition = "2018"
1616

1717
[dependencies]
1818
futures-util = "0.3.14"
19-
gotham = { path = "../../gotham", version = "0.7.1", default-features = false, features = ["derive"] }
19+
gotham = { path = "../../gotham", version = "0.7.2", default-features = false, features = ["derive"] }
2020
jsonwebtoken = { version = "8.0", default-features = false }
2121
log = "0.4"
2222
serde = { version = "1.0", features = ["derive"] }

misc/borrow_bag/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "borrow-bag"
3-
version = "1.1.0" # Alter html_root_url in lib.rs also
3+
version = "1.1.1" # Alter html_root_url in lib.rs also
44
authors = ["Shaun Mangelsdorf <[email protected]>",
55
"Bradley Beddoes <[email protected]>"]
66
description = "A type-safe, heterogeneous collection with zero-cost add and borrow"

misc/borrow_bag/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
//! the value back later. As the `BorrowBag` is add-only, `Handle` values remain valid for the
55
//! lifetime of the `BorrowBag`.
66
7-
#![doc(html_root_url = "https://docs.rs/borrow-bag/1.1.0")] // Update when changed in Cargo.toml
7+
#![doc(html_root_url = "https://docs.rs/borrow-bag/1.1.1")] // Update when changed in Cargo.toml
88
#![warn(missing_docs, deprecated)]
99
// Stricter requirements once we get to pull request stage, all warnings must be resolved.
1010
#![cfg_attr(feature = "ci", deny(warnings))]

0 commit comments

Comments
 (0)