From e323c14105d542bda3b624b0e3fb71b5fa9ea91d Mon Sep 17 00:00:00 2001 From: Dominic Date: Thu, 18 Nov 2021 14:40:18 +0100 Subject: [PATCH] Release gotham 0.7.1 --- gotham/Cargo.toml | 2 +- gotham/src/lib.rs | 2 +- middleware/diesel/Cargo.toml | 2 +- middleware/jwt/Cargo.toml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/gotham/Cargo.toml b/gotham/Cargo.toml index f6e5c417..1271de7a 100644 --- a/gotham/Cargo.toml +++ b/gotham/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "gotham" -version = "0.7.0" # Alter html_root_url in lib.rs also +version = "0.7.1" # Alter html_root_url in lib.rs also authors = ["Shaun Mangelsdorf ", "Colin Bankier ", "Dominic Meiser ", diff --git a/gotham/src/lib.rs b/gotham/src/lib.rs index 09953ca5..1496598b 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.0")] // Update when changed in Cargo.toml +#![doc(html_root_url = "https://docs.rs/gotham/0.7.1")] // 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 db2bdb97..1039d7f5 100644 --- a/middleware/diesel/Cargo.toml +++ b/middleware/diesel/Cargo.toml @@ -13,7 +13,7 @@ keywords = ["http", "async", "web", "gotham", "diesel"] [dependencies] futures-util = "0.3.14" -gotham = { path = "../../gotham", version = "0.7.0", default-features = false, features = ["derive"] } +gotham = { path = "../../gotham", version = "0.7.1", default-features = false, features = ["derive"] } diesel = { version = "1.4.6", features = ["r2d2"] } r2d2 = "0.8" tokio = { version = "1.0", features = ["full"] } diff --git a/middleware/jwt/Cargo.toml b/middleware/jwt/Cargo.toml index ddb91b6f..f6cba6f1 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.0", default-features = false, features = ["derive"] } +gotham = { path = "../../gotham", version = "0.7.1", default-features = false, features = ["derive"] } serde = { version = "1.0", features = ["derive"] } jsonwebtoken = "7.0" log = "0.4"