Skip to content

Commit

Permalink
Release gotham 0.7.2, gotham_middleware_diesel 0.5.1 and borrow-bag 1…
Browse files Browse the repository at this point in the history
….1.1
  • Loading branch information
msrd0 committed Sep 12, 2023
1 parent d297855 commit 702a03a
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions gotham/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "gotham"
version = "0.7.1" # Alter html_root_url in lib.rs also
version = "0.7.2" # Alter html_root_url in lib.rs also
authors = ["Shaun Mangelsdorf <[email protected]>",
"Colin Bankier <[email protected]>",
"Dominic Meiser <[email protected]>",
Expand All @@ -26,7 +26,7 @@ session = ["bincode", "linked-hash-map"]
testing = ["hyper/client"]

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

anyhow = "1.0.5"
Expand Down
2 changes: 1 addition & 1 deletion gotham/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
//! You can find out more about Gotham, including where to get help, at <https://gotham.rs>.
//!
//! We look forward to welcoming you into the Gotham community!
#![doc(html_root_url = "https://docs.rs/gotham/0.7.1")] // Update when changed in Cargo.toml
#![doc(html_root_url = "https://docs.rs/gotham/0.7.2")] // Update when changed in Cargo.toml
#![warn(deprecated, missing_docs, unreachable_pub)]
// Stricter requirements once we get to pull request stage, all warnings must be resolved.
#![cfg_attr(feature = "ci", deny(warnings))]
Expand Down
6 changes: 3 additions & 3 deletions middleware/diesel/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "gotham_middleware_diesel"
version = "0.5.0"
version = "0.5.1"
authors = ["colinbankier <[email protected]>"]
edition = "2018"
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."
Expand All @@ -12,14 +12,14 @@ categories = ["web-programming::http-server"]
keywords = ["http", "async", "web", "gotham", "diesel"]

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

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

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

diesel = { version = "2.1", features = ["sqlite"] }
2 changes: 1 addition & 1 deletion middleware/jwt/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ edition = "2018"

[dependencies]
futures-util = "0.3.14"
gotham = { path = "../../gotham", version = "0.7.1", default-features = false, features = ["derive"] }
gotham = { path = "../../gotham", version = "0.7.2", default-features = false, features = ["derive"] }
jsonwebtoken = { version = "8.0", default-features = false }
log = "0.4"
serde = { version = "1.0", features = ["derive"] }
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.1.0" # Alter html_root_url in lib.rs also
version = "1.1.1" # 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.1.0")] // Update when changed in Cargo.toml
#![doc(html_root_url = "https://docs.rs/borrow-bag/1.1.1")] // 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 702a03a

Please sign in to comment.