Skip to content

Commit

Permalink
Bump version numbers due to incompatible changes
Browse files Browse the repository at this point in the history
  • Loading branch information
djc committed Nov 24, 2021
1 parent eb5c1a9 commit 368204e
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
@@ -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"
Expand Down
4 changes: 2 additions & 2 deletions 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"
Expand All @@ -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"

Expand Down
4 changes: 2 additions & 2 deletions redis/Cargo.toml
@@ -1,14 +1,14 @@
[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"
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]
Expand Down

0 comments on commit 368204e

Please sign in to comment.