Skip to content

Commit

Permalink
Bump version to 0.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
djc committed Jan 16, 2020
1 parent defb1af commit 315f602
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.0-pre"
version = "0.4.0"
authors = ["Kyle Huey <khuey@kylehuey.com>", "Dirkjan Ochtman <dirkjan@ochtman.nl>"]
description = "r2d2, but for async tokio based connections"
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-pre"
version = "0.4.0"
authors = ["Kyle Huey <khuey@kylehuey.com>"]
description = "r2d2-postgres, but for async tokio based connections"
license = "MIT"
Expand All @@ -17,7 +17,7 @@ edition = "2018"

[dependencies]
async-trait = "0.1"
bb8 = { path = "../bb8" }
bb8 = { version = "0.4.0", path = "../bb8" }
futures = "0.3"
tokio = { version = "0.2", features = ["rt-core"] }
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.4.0-pre"
version = "0.4.0"
authors = ["Daniel Smith <smith.daniel.br@gmail.com>", "Kyle Huey <khuey@kylehuey.com>"]
description = "r2d2-redis, but for async tokio based connections"
license = "MIT"
Expand All @@ -9,6 +9,6 @@ edition = "2018"

[dependencies]
async-trait = "0.1"
bb8 = { path = "../bb8" }
bb8 = { version = "0.4.0", path = "../bb8" }
futures = "0.3"
redis = "0.15"

0 comments on commit 315f602

Please sign in to comment.