Skip to content

Commit 315f602

Browse files
committed
Bump version to 0.4.0
1 parent defb1af commit 315f602

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

bb8/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "bb8"
3-
version = "0.4.0-pre"
3+
version = "0.4.0"
44
authors = ["Kyle Huey <khuey@kylehuey.com>", "Dirkjan Ochtman <dirkjan@ochtman.nl>"]
55
description = "r2d2, but for async tokio based connections"
66
license = "MIT"

postgres/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "bb8-postgres"
3-
version = "0.4.0-pre"
3+
version = "0.4.0"
44
authors = ["Kyle Huey <khuey@kylehuey.com>"]
55
description = "r2d2-postgres, but for async tokio based connections"
66
license = "MIT"
@@ -17,7 +17,7 @@ edition = "2018"
1717

1818
[dependencies]
1919
async-trait = "0.1"
20-
bb8 = { path = "../bb8" }
20+
bb8 = { version = "0.4.0", path = "../bb8" }
2121
futures = "0.3"
2222
tokio = { version = "0.2", features = ["rt-core"] }
2323
tokio-postgres = "0.5.1"

redis/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "bb8-redis"
3-
version = "0.4.0-pre"
3+
version = "0.4.0"
44
authors = ["Daniel Smith <smith.daniel.br@gmail.com>", "Kyle Huey <khuey@kylehuey.com>"]
55
description = "r2d2-redis, but for async tokio based connections"
66
license = "MIT"
@@ -9,6 +9,6 @@ edition = "2018"
99

1010
[dependencies]
1111
async-trait = "0.1"
12-
bb8 = { path = "../bb8" }
12+
bb8 = { version = "0.4.0", path = "../bb8" }
1313
futures = "0.3"
1414
redis = "0.15"

0 commit comments

Comments
 (0)