Skip to content

Commit

Permalink
Bump versions
Browse files Browse the repository at this point in the history
  • Loading branch information
djc committed Nov 15, 2020
1 parent d37e8d3 commit 1c0a27a
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion bb8/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bb8"
version = "0.4.2"
version = "0.5.0"
authors = ["Dirkjan Ochtman <dirkjan@ochtman.nl>", "Kyle Huey <khuey@kylehuey.com>"]
description = "Full-featured async (tokio-based) connection pool (like r2d2)"
license = "MIT"
Expand Down
4 changes: 2 additions & 2 deletions postgres/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bb8-postgres"
version = "0.4.0"
version = "0.5.0"
authors = ["Dirkjan Ochtman <dirkjan@ochtman.nl>", "Kyle Huey <khuey@kylehuey.com>"]
description = "Full-featured async (tokio-based) postgres connection pool (like r2d2)"
license = "MIT"
Expand All @@ -17,7 +17,7 @@ edition = "2018"

[dependencies]
async-trait = "0.1"
bb8 = { version = "0.4.0", path = "../bb8" }
bb8 = { version = "0.5.0", path = "../bb8" }
tokio = { version = "0.2", features = ["rt-core", "macros"] }
tokio-postgres = "0.5.1"

Expand Down
4 changes: 2 additions & 2 deletions redis/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bb8-redis"
version = "0.5.0"
version = "0.6.0"
authors = [
"Dirkjan Ochtman <dirkjan@ochtman.nl>",
"Daniel Smith <smith.daniel.br@gmail.com>",
Expand All @@ -13,7 +13,7 @@ edition = "2018"

[dependencies]
async-trait = "0.1"
bb8 = { version = "0.4.0", path = "../bb8" }
bb8 = { version = "0.5.0", path = "../bb8" }
redis = { version = "0.17", default-features = false, features = ["tokio-comp"] }

[dev-dependencies]
Expand Down

0 comments on commit 1c0a27a

Please sign in to comment.