Skip to content

Commit

Permalink
Release gotham 0.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
msrd0 committed Mar 20, 2021
1 parent bfc7643 commit 0968cae
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion gotham/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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 <s.mangelsdorf@gmail.com>",
"Colin Bankier <colinbankier@gmail.com>",
"Dominic Meiser <git@msrd0.de>",
Expand Down
2 changes: 1 addition & 1 deletion gotham/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
//! You can find out more about Gotham, including where to get help, at <https://gotham.rs>.
//!
//! 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))]
Expand Down
2 changes: 1 addition & 1 deletion gotham_derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "gotham_derive"
version = "0.5.0"
version = "0.6.0"
authors = ["Bradley Beddoes <bradleybeddoes@gmail.com>",
"Colin Bankier",
"Dominic Meiser <git@msrd0.de>",
Expand Down
6 changes: 3 additions & 3 deletions middleware/diesel/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "gotham_middleware_diesel"
version = "0.2.0"
version = "0.3.0"
authors = ["colinbankier <colinbankier@gmail.com>"]
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."
Expand All @@ -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"] }
Expand Down
6 changes: 3 additions & 3 deletions middleware/jwt/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "gotham_middleware_jwt"
version = "0.5.0"
version = "0.6.0"
authors = ["Nicholas Young <nyoung@uptime.ventures>",
"Colin Bankier <colinbankier@gmail.com>",
"Isaac Whitfield <iw@whitfin.io>",
Expand All @@ -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"
Expand Down

0 comments on commit 0968cae

Please sign in to comment.