Skip to content

Commit fef3d23

Browse files
committed
Release gotham_middleware_diesel 0.5.0 and gotham_middleware_jwt 0.8.0
1 parent 45baf42 commit fef3d23

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

middleware/diesel/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_middleware_diesel"
3-
version = "0.4.0"
3+
version = "0.5.0"
44
authors = ["colinbankier <[email protected]>"]
55
edition = "2018"
66
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."

middleware/diesel/src/repo.rs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
1-
use diesel::r2d2::{self, CustomizeConnection, Pool, PooledConnection};
2-
use diesel::r2d2::{ConnectionManager, R2D2Connection};
1+
use diesel::r2d2::{
2+
self, ConnectionManager, CustomizeConnection, Pool, PooledConnection, R2D2Connection,
3+
};
34
use gotham::prelude::*;
45
use log::error;
56
use tokio::task;

middleware/jwt/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_middleware_jwt"
3-
version = "0.7.0"
3+
version = "0.8.0"
44
authors = ["Nicholas Young <[email protected]>",
55
"Colin Bankier <[email protected]>",
66
"Isaac Whitfield <[email protected]>",

0 commit comments

Comments
 (0)