Skip to content

Commit f1a0df4

Browse files
committed
Release gotham 0.7.4
1 parent 059b441 commit f1a0df4

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

gotham/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "gotham"
3-
version = "0.7.3" # Alter html_root_url in lib.rs also
3+
version = "0.7.4" # 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

+1-1
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.3")]
6+
#![doc(html_root_url = "https://docs.rs/gotham/0.7.4")]
77
// Update when changed in Cargo.toml
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

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,14 @@ categories = ["web-programming::http-server"]
1212
keywords = ["http", "async", "web", "gotham", "diesel"]
1313

1414
[dependencies]
15-
gotham = { path = "../../gotham", version = "0.7.3", default-features = false, features = ["derive"] }
15+
gotham = { path = "../../gotham", version = "0.7.4", default-features = false, features = ["derive"] }
1616

1717
diesel = { version = "2.1", features = ["r2d2"] }
1818
futures-util = "0.3.14"
1919
log = "0.4"
2020
tokio = { version = "1.0", features = ["full"] }
2121

2222
[dev-dependencies]
23-
gotham = { path = "../../gotham", version = "0.7.3", default-features = false, features = ["testing"] }
23+
gotham = { path = "../../gotham", version = "0.7.4", default-features = false, features = ["testing"] }
2424

2525
diesel = { version = "2.1", features = ["sqlite"] }

middleware/jwt/Cargo.toml

+1-1
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.3", default-features = false, features = ["derive"] }
19+
gotham = { path = "../../gotham", version = "0.7.4", default-features = false, features = ["derive"] }
2020
jsonwebtoken = { version = "8.0", default-features = false }
2121
log = "0.4"
2222
serde = { version = "1.0", features = ["derive"] }

0 commit comments

Comments
 (0)