Skip to content

Commit

Permalink
Release gotham 0.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
msrd0 committed Nov 12, 2021
1 parent 6238958 commit 7251955
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions gotham/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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 <s.mangelsdorf@gmail.com>",
"Colin Bankier <colinbankier@gmail.com>",
"Dominic Meiser <git@msrd0.de>",
Expand All @@ -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"
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.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))]
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.6.0"
version = "0.7.0"
authors = ["Bradley Beddoes <bradleybeddoes@gmail.com>",
"Colin Bankier",
"Dominic Meiser <git@msrd0.de>",
Expand Down
4 changes: 2 additions & 2 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.3.1"
version = "0.4.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,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"] }
Expand Down
4 changes: 2 additions & 2 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.6.1"
version = "0.7.0"
authors = ["Nicholas Young <nyoung@uptime.ventures>",
"Colin Bankier <colinbankier@gmail.com>",
"Isaac Whitfield <iw@whitfin.io>",
Expand All @@ -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"

0 comments on commit 7251955

Please sign in to comment.