Skip to content

Commit

Permalink
Release gotham_middleware_diesel 0.5.0 and gotham_middleware_jwt 0.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
msrd0 committed Nov 6, 2022
1 parent 45baf42 commit fef3d23
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion middleware/diesel/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "gotham_middleware_diesel"
version = "0.4.0"
version = "0.5.0"
authors = ["colinbankier <[email protected]>"]
edition = "2018"
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."
Expand Down
5 changes: 3 additions & 2 deletions middleware/diesel/src/repo.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
use diesel::r2d2::{self, CustomizeConnection, Pool, PooledConnection};
use diesel::r2d2::{ConnectionManager, R2D2Connection};
use diesel::r2d2::{
self, ConnectionManager, CustomizeConnection, Pool, PooledConnection, R2D2Connection,
};
use gotham::prelude::*;
use log::error;
use tokio::task;
Expand Down
2 changes: 1 addition & 1 deletion middleware/jwt/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "gotham_middleware_jwt"
version = "0.7.0"
version = "0.8.0"
authors = ["Nicholas Young <[email protected]>",
"Colin Bankier <[email protected]>",
"Isaac Whitfield <[email protected]>",
Expand Down

0 comments on commit fef3d23

Please sign in to comment.