Skip to content

Commit

Permalink
Release gotham 0.7.4
Browse files Browse the repository at this point in the history
  • Loading branch information
msrd0 committed Apr 17, 2024
1 parent 059b441 commit f1a0df4
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 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.7.3" # Alter html_root_url in lib.rs also
version = "0.7.4" # 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.7.3")]
#![doc(html_root_url = "https://docs.rs/gotham/0.7.4")]
// Update when changed in Cargo.toml
// Stricter requirements once we get to pull request stage, all warnings must be resolved.
#![cfg_attr(feature = "ci", deny(warnings))]
Expand Down
4 changes: 2 additions & 2 deletions middleware/diesel/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,14 @@ categories = ["web-programming::http-server"]
keywords = ["http", "async", "web", "gotham", "diesel"]

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

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

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

diesel = { version = "2.1", features = ["sqlite"] }
2 changes: 1 addition & 1 deletion middleware/jwt/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ edition = "2018"

[dependencies]
futures-util = "0.3.14"
gotham = { path = "../../gotham", version = "0.7.3", default-features = false, features = ["derive"] }
gotham = { path = "../../gotham", version = "0.7.4", default-features = false, features = ["derive"] }
jsonwebtoken = { version = "8.0", default-features = false }
log = "0.4"
serde = { version = "1.0", features = ["derive"] }

0 comments on commit f1a0df4

Please sign in to comment.