Skip to content

Commit

Permalink
Release gotham 0.7.1
Browse files Browse the repository at this point in the history
  • Loading branch information
msrd0 committed Nov 18, 2021
1 parent 878e7b5 commit e323c14
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 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.0" # Alter html_root_url in lib.rs also
version = "0.7.1" # 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.0")] // Update when changed in Cargo.toml
#![doc(html_root_url = "https://docs.rs/gotham/0.7.1")] // 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 middleware/diesel/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ keywords = ["http", "async", "web", "gotham", "diesel"]

[dependencies]
futures-util = "0.3.14"
gotham = { path = "../../gotham", version = "0.7.0", default-features = false, features = ["derive"] }
gotham = { path = "../../gotham", version = "0.7.1", default-features = false, features = ["derive"] }
diesel = { version = "1.4.6", features = ["r2d2"] }
r2d2 = "0.8"
tokio = { version = "1.0", features = ["full"] }
Expand Down
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.0", default-features = false, features = ["derive"] }
gotham = { path = "../../gotham", version = "0.7.1", default-features = false, features = ["derive"] }
serde = { version = "1.0", features = ["derive"] }
jsonwebtoken = "7.0"
log = "0.4"

0 comments on commit e323c14

Please sign in to comment.