diff --git a/bb8/Cargo.toml b/bb8/Cargo.toml index faf3650..2fd7e13 100644 --- a/bb8/Cargo.toml +++ b/bb8/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bb8" -version = "0.7.1" +version = "0.8.0" description = "Full-featured async (tokio-based) connection pool (like r2d2)" license = "MIT" repository = "https://github.com/djc/bb8" diff --git a/postgres/Cargo.toml b/postgres/Cargo.toml index bc91001..dc934fa 100644 --- a/postgres/Cargo.toml +++ b/postgres/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bb8-postgres" -version = "0.7.0" +version = "0.8.0" description = "Full-featured async (tokio-based) postgres connection pool (like r2d2)" license = "MIT" repository = "https://github.com/djc/bb8" @@ -17,7 +17,7 @@ edition = "2018" [dependencies] async-trait = "0.1" -bb8 = { version = "0.7", path = "../bb8" } +bb8 = { version = "0.8", path = "../bb8" } tokio = { version = "1.0.0", features = ["rt"] } tokio-postgres = "0.7" diff --git a/redis/Cargo.toml b/redis/Cargo.toml index 4ccea78..97a3c4b 100644 --- a/redis/Cargo.toml +++ b/redis/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bb8-redis" -version = "0.10.1" +version = "0.11.0" description = "Full-featured async (tokio-based) redis connection pool (like r2d2)" license = "MIT" repository = "https://github.com/djc/bb8" @@ -8,7 +8,7 @@ edition = "2018" [dependencies] async-trait = "0.1" -bb8 = { version = "0.7", path = "../bb8" } +bb8 = { version = "0.8", path = "../bb8" } redis = { version = "0.21.1", default-features = false, features = ["tokio-comp"] } [dev-dependencies]