From 702a03a48fc7de27a8946cc7561846e371385182 Mon Sep 17 00:00:00 2001 From: Dominic Date: Tue, 12 Sep 2023 21:39:40 +0200 Subject: [PATCH] Release gotham 0.7.2, gotham_middleware_diesel 0.5.1 and borrow-bag 1.1.1 --- gotham/Cargo.toml | 4 ++-- gotham/src/lib.rs | 2 +- middleware/diesel/Cargo.toml | 6 +++--- middleware/jwt/Cargo.toml | 2 +- misc/borrow_bag/Cargo.toml | 2 +- misc/borrow_bag/src/lib.rs | 2 +- 6 files changed, 9 insertions(+), 9 deletions(-) diff --git a/gotham/Cargo.toml b/gotham/Cargo.toml index b4a14358d..bfdf3a3b2 100644 --- a/gotham/Cargo.toml +++ b/gotham/Cargo.toml @@ -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 ", "Colin Bankier ", "Dominic Meiser ", @@ -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" diff --git a/gotham/src/lib.rs b/gotham/src/lib.rs index 3fe4cf279..5cfb7e451 100644 --- a/gotham/src/lib.rs +++ b/gotham/src/lib.rs @@ -3,7 +3,7 @@ //! You can find out more about Gotham, including where to get help, at . //! //! 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))] diff --git a/middleware/diesel/Cargo.toml b/middleware/diesel/Cargo.toml index 1831838df..81ab6b575 100644 --- a/middleware/diesel/Cargo.toml +++ b/middleware/diesel/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "gotham_middleware_diesel" -version = "0.5.0" +version = "0.5.1" authors = ["colinbankier "] 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." @@ -12,7 +12,7 @@ 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" @@ -20,6 +20,6 @@ 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"] } diff --git a/middleware/jwt/Cargo.toml b/middleware/jwt/Cargo.toml index 20f3eddd4..266d80718 100644 --- a/middleware/jwt/Cargo.toml +++ b/middleware/jwt/Cargo.toml @@ -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"] } diff --git a/misc/borrow_bag/Cargo.toml b/misc/borrow_bag/Cargo.toml index 427a62c7a..716eb5094 100644 --- a/misc/borrow_bag/Cargo.toml +++ b/misc/borrow_bag/Cargo.toml @@ -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 ", "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 a42b6afee..82270501a 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.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))]