From f6e467e86d3a278c40995aee6a41fd8f46161035 Mon Sep 17 00:00:00 2001 From: Dominic Date: Tue, 5 Mar 2024 17:47:04 +0100 Subject: [PATCH] Release gotham 0.7.3 --- gotham/Cargo.toml | 2 +- gotham/src/lib.rs | 2 +- middleware/diesel/Cargo.toml | 4 ++-- middleware/jwt/Cargo.toml | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/gotham/Cargo.toml b/gotham/Cargo.toml index 4d146890..4ecc8cd8 100644 --- a/gotham/Cargo.toml +++ b/gotham/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "gotham" -version = "0.7.2" # Alter html_root_url in lib.rs also +version = "0.7.3" # 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 38b073b4..bae9eb8f 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.2")] // Update when changed in Cargo.toml +#![doc(html_root_url = "https://docs.rs/gotham/0.7.3")] // 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 81ab6b57..b1304a51 100644 --- a/middleware/diesel/Cargo.toml +++ b/middleware/diesel/Cargo.toml @@ -12,7 +12,7 @@ categories = ["web-programming::http-server"] keywords = ["http", "async", "web", "gotham", "diesel"] [dependencies] -gotham = { path = "../../gotham", version = "0.7.2", default-features = false, features = ["derive"] } +gotham = { path = "../../gotham", version = "0.7.3", 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.2", default-features = false, features = ["testing"] } +gotham = { path = "../../gotham", version = "0.7.3", default-features = false, features = ["testing"] } diesel = { version = "2.1", features = ["sqlite"] } diff --git a/middleware/jwt/Cargo.toml b/middleware/jwt/Cargo.toml index 266d8071..39059425 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.2", default-features = false, features = ["derive"] } +gotham = { path = "../../gotham", version = "0.7.3", default-features = false, features = ["derive"] } jsonwebtoken = { version = "8.0", default-features = false } log = "0.4" serde = { version = "1.0", features = ["derive"] }