diff --git a/gotham/Cargo.toml b/gotham/Cargo.toml index 734040f0..f6db2d9c 100644 --- a/gotham/Cargo.toml +++ b/gotham/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "gotham" -version = "0.7.3" # Alter html_root_url in lib.rs also +version = "0.7.4" # 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 1f123335..1dd32f3e 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.3")] +#![doc(html_root_url = "https://docs.rs/gotham/0.7.4")] // Update when changed in Cargo.toml // 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 b1304a51..7e019a76 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.3", default-features = false, features = ["derive"] } +gotham = { path = "../../gotham", version = "0.7.4", 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.3", default-features = false, features = ["testing"] } +gotham = { path = "../../gotham", version = "0.7.4", default-features = false, features = ["testing"] } diesel = { version = "2.1", features = ["sqlite"] } diff --git a/middleware/jwt/Cargo.toml b/middleware/jwt/Cargo.toml index 39059425..454b8501 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.3", default-features = false, features = ["derive"] } +gotham = { path = "../../gotham", version = "0.7.4", default-features = false, features = ["derive"] } jsonwebtoken = { version = "8.0", default-features = false } log = "0.4" serde = { version = "1.0", features = ["derive"] }