From 7251955067832131bce80de7662749976957ded5 Mon Sep 17 00:00:00 2001 From: Dominic Date: Fri, 12 Nov 2021 20:59:23 +0100 Subject: [PATCH] Release gotham 0.7.0 --- gotham/Cargo.toml | 4 ++-- gotham/src/lib.rs | 2 +- gotham_derive/Cargo.toml | 2 +- middleware/diesel/Cargo.toml | 4 ++-- middleware/jwt/Cargo.toml | 4 ++-- 5 files changed, 8 insertions(+), 8 deletions(-) diff --git a/gotham/Cargo.toml b/gotham/Cargo.toml index bc2976cc..f6e5c417 100644 --- a/gotham/Cargo.toml +++ b/gotham/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "gotham" -version = "0.6.0" # Alter html_root_url in lib.rs also +version = "0.7.0" # Alter html_root_url in lib.rs also authors = ["Shaun Mangelsdorf ", "Colin Bankier ", "Dominic Meiser ", @@ -27,7 +27,7 @@ testing = ["hyper/client"] [dependencies] borrow-bag = { path = "../misc/borrow_bag", version = "1.1" } -gotham_derive = { path = "../gotham_derive", version = "0.6", optional = true } +gotham_derive = { path = "../gotham_derive", version = "0.7", optional = true } anyhow = "1.0" base64 = "0.13" diff --git a/gotham/src/lib.rs b/gotham/src/lib.rs index edcc9bc1..09953ca5 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.6.0")] // Update when changed in Cargo.toml +#![doc(html_root_url = "https://docs.rs/gotham/0.7.0")] // 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/gotham_derive/Cargo.toml b/gotham_derive/Cargo.toml index 10bb3031..e6e04074 100644 --- a/gotham_derive/Cargo.toml +++ b/gotham_derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "gotham_derive" -version = "0.6.0" +version = "0.7.0" authors = ["Bradley Beddoes ", "Colin Bankier", "Dominic Meiser ", diff --git a/middleware/diesel/Cargo.toml b/middleware/diesel/Cargo.toml index 52f4a46d..db2bdb97 100644 --- a/middleware/diesel/Cargo.toml +++ b/middleware/diesel/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "gotham_middleware_diesel" -version = "0.3.1" +version = "0.4.0" 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." @@ -13,7 +13,7 @@ keywords = ["http", "async", "web", "gotham", "diesel"] [dependencies] futures-util = "0.3.14" -gotham = { path = "../../gotham", version = "0.6.0", default-features = false, features = ["derive"] } +gotham = { path = "../../gotham", version = "0.7.0", 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 3b5ed3d4..ddb91b6f 100644 --- a/middleware/jwt/Cargo.toml +++ b/middleware/jwt/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "gotham_middleware_jwt" -version = "0.6.1" +version = "0.7.0" authors = ["Nicholas Young ", "Colin Bankier ", "Isaac Whitfield ", @@ -16,7 +16,7 @@ edition = "2018" [dependencies] futures-util = "0.3.14" -gotham = { path = "../../gotham", version = "0.6.0", default-features = false, features = ["derive"] } +gotham = { path = "../../gotham", version = "0.7.0", default-features = false, features = ["derive"] } serde = { version = "1.0", features = ["derive"] } jsonwebtoken = "7.0" log = "0.4"