From 0968caecda604a83a1df108f25c9877fda73780d Mon Sep 17 00:00:00 2001 From: Dominic Date: Sat, 20 Mar 2021 22:44:22 +0100 Subject: [PATCH] Release gotham 0.6.0 --- gotham/Cargo.toml | 2 +- gotham/src/lib.rs | 2 +- gotham_derive/Cargo.toml | 2 +- middleware/diesel/Cargo.toml | 6 +++--- middleware/jwt/Cargo.toml | 6 +++--- 5 files changed, 9 insertions(+), 9 deletions(-) diff --git a/gotham/Cargo.toml b/gotham/Cargo.toml index 652f0ace6..b2ab2f884 100644 --- a/gotham/Cargo.toml +++ b/gotham/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "gotham" -version = "0.5.0" # Alter html_root_url in lib.rs also +version = "0.6.0" # 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 05c45f57e..14be936f3 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.5.0")] // Update when changed in Cargo.toml +#![doc(html_root_url = "https://docs.rs/gotham/0.6.0")] // 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))] diff --git a/gotham_derive/Cargo.toml b/gotham_derive/Cargo.toml index 28cacad29..49fcae1de 100644 --- a/gotham_derive/Cargo.toml +++ b/gotham_derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "gotham_derive" -version = "0.5.0" +version = "0.6.0" authors = ["Bradley Beddoes ", "Colin Bankier", "Dominic Meiser ", diff --git a/middleware/diesel/Cargo.toml b/middleware/diesel/Cargo.toml index 86d801fea..262872a3e 100644 --- a/middleware/diesel/Cargo.toml +++ b/middleware/diesel/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "gotham_middleware_diesel" -version = "0.2.0" +version = "0.3.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,8 +13,8 @@ keywords = ["http", "async", "web", "gotham", "diesel"] [dependencies] futures = "0.3.1" -gotham = { path = "../../gotham", version = "0.5.0", default-features = false } -gotham_derive = { path = "../../gotham_derive", version = "0.5.0" } +gotham = { path = "../../gotham", version = "0.6.0", default-features = false } +gotham_derive = { path = "../../gotham_derive", version = "0.6.0" } diesel = { version = "1.4", features = ["r2d2"] } r2d2 = "0.8" tokio = { version = "1.0", features = ["full"] } diff --git a/middleware/jwt/Cargo.toml b/middleware/jwt/Cargo.toml index 5b27b7e6c..376d5efdc 100644 --- a/middleware/jwt/Cargo.toml +++ b/middleware/jwt/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "gotham_middleware_jwt" -version = "0.5.0" +version = "0.6.0" authors = ["Nicholas Young ", "Colin Bankier ", "Isaac Whitfield ", @@ -16,8 +16,8 @@ edition = "2018" [dependencies] futures = "0.3.1" -gotham = { path = "../../gotham", version = "0.5.0", default-features = false } -gotham_derive = { path = "../../gotham_derive", version = "0.5.0" } +gotham = { path = "../../gotham", version = "0.6.0", default-features = false } +gotham_derive = { path = "../../gotham_derive", version = "0.6.0" } serde = "1.0" serde_derive = "1.0" jsonwebtoken = "7.0"