Skip to content

Commit 0968cae

Browse files
committed
Release gotham 0.6.0
1 parent bfc7643 commit 0968cae

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

gotham/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "gotham"
3-
version = "0.5.0" # Alter html_root_url in lib.rs also
3+
version = "0.6.0" # Alter html_root_url in lib.rs also
44
authors = ["Shaun Mangelsdorf <[email protected]>",
55
"Colin Bankier <[email protected]>",
66
"Dominic Meiser <[email protected]>",

gotham/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
//! You can find out more about Gotham, including where to get help, at <https://gotham.rs>.
44
//!
55
//! We look forward to welcoming you into the Gotham community!
6-
#![doc(html_root_url = "https://docs.rs/gotham/0.5.0")] // Update when changed in Cargo.toml
6+
#![doc(html_root_url = "https://docs.rs/gotham/0.6.0")] // Update when changed in Cargo.toml
77
#![warn(missing_docs, deprecated)]
88
// Stricter requirements once we get to pull request stage, all warnings must be resolved.
99
#![cfg_attr(feature = "ci", deny(warnings))]

gotham_derive/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "gotham_derive"
3-
version = "0.5.0"
3+
version = "0.6.0"
44
authors = ["Bradley Beddoes <[email protected]>",
55
"Colin Bankier",
66
"Dominic Meiser <[email protected]>",

middleware/diesel/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "gotham_middleware_diesel"
3-
version = "0.2.0"
3+
version = "0.3.0"
44
authors = ["colinbankier <[email protected]>"]
55
edition = "2018"
66
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"]
1313

1414
[dependencies]
1515
futures = "0.3.1"
16-
gotham = { path = "../../gotham", version = "0.5.0", default-features = false }
17-
gotham_derive = { path = "../../gotham_derive", version = "0.5.0" }
16+
gotham = { path = "../../gotham", version = "0.6.0", default-features = false }
17+
gotham_derive = { path = "../../gotham_derive", version = "0.6.0" }
1818
diesel = { version = "1.4", features = ["r2d2"] }
1919
r2d2 = "0.8"
2020
tokio = { version = "1.0", features = ["full"] }

middleware/jwt/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "gotham_middleware_jwt"
3-
version = "0.5.0"
3+
version = "0.6.0"
44
authors = ["Nicholas Young <[email protected]>",
55
"Colin Bankier <[email protected]>",
66
"Isaac Whitfield <[email protected]>",
@@ -16,8 +16,8 @@ edition = "2018"
1616

1717
[dependencies]
1818
futures = "0.3.1"
19-
gotham = { path = "../../gotham", version = "0.5.0", default-features = false }
20-
gotham_derive = { path = "../../gotham_derive", version = "0.5.0" }
19+
gotham = { path = "../../gotham", version = "0.6.0", default-features = false }
20+
gotham_derive = { path = "../../gotham_derive", version = "0.6.0" }
2121
serde = "1.0"
2222
serde_derive = "1.0"
2323
jsonwebtoken = "7.0"

0 commit comments

Comments
 (0)