Skip to content

Commit e323c14

Browse files
committed
Release gotham 0.7.1
1 parent 878e7b5 commit e323c14

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
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.7.0" # Alter html_root_url in lib.rs also
3+
version = "0.7.1" # Alter html_root_url in lib.rs also
44
authors = ["Shaun Mangelsdorf <s.mangelsdorf@gmail.com>",
55
"Colin Bankier <colinbankier@gmail.com>",
66
"Dominic Meiser <git@msrd0.de>",

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.7.0")] // Update when changed in Cargo.toml
6+
#![doc(html_root_url = "https://docs.rs/gotham/0.7.1")] // Update when changed in Cargo.toml
77
#![warn(deprecated, missing_docs, unreachable_pub)]
88
// Stricter requirements once we get to pull request stage, all warnings must be resolved.
99
#![cfg_attr(feature = "ci", deny(warnings))]

middleware/diesel/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ keywords = ["http", "async", "web", "gotham", "diesel"]
1313

1414
[dependencies]
1515
futures-util = "0.3.14"
16-
gotham = { path = "../../gotham", version = "0.7.0", default-features = false, features = ["derive"] }
16+
gotham = { path = "../../gotham", version = "0.7.1", default-features = false, features = ["derive"] }
1717
diesel = { version = "1.4.6", features = ["r2d2"] }
1818
r2d2 = "0.8"
1919
tokio = { version = "1.0", features = ["full"] }

middleware/jwt/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ edition = "2018"
1616

1717
[dependencies]
1818
futures-util = "0.3.14"
19-
gotham = { path = "../../gotham", version = "0.7.0", default-features = false, features = ["derive"] }
19+
gotham = { path = "../../gotham", version = "0.7.1", default-features = false, features = ["derive"] }
2020
serde = { version = "1.0", features = ["derive"] }
2121
jsonwebtoken = "7.0"
2222
log = "0.4"

0 commit comments

Comments
 (0)