From 6e2a58629c586b3b69a408a85bcae73d92236298 Mon Sep 17 00:00:00 2001 From: Gabriel Bastos Date: Fri, 6 Dec 2024 16:04:24 -0300 Subject: [PATCH] Major version bump for all crates --- bb8/Cargo.toml | 2 +- postgres/Cargo.toml | 4 ++-- redis/Cargo.toml | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/bb8/Cargo.toml b/bb8/Cargo.toml index c0a17af..8e8bcdd 100644 --- a/bb8/Cargo.toml +++ b/bb8/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bb8" -version = "0.8.6" +version = "0.9.0" edition = "2021" rust-version = "1.75" description = "Full-featured async (tokio-based) connection pool (like r2d2)" diff --git a/postgres/Cargo.toml b/postgres/Cargo.toml index ae78331..b4abe57 100644 --- a/postgres/Cargo.toml +++ b/postgres/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bb8-postgres" -version = "0.8.1" +version = "0.9.0" edition = "2021" rust-version = "1.75" description = "Full-featured async (tokio-based) postgres connection pool (like r2d2)" @@ -19,7 +19,7 @@ repository = "https://github.com/djc/bb8" "with-time-0_3" = ["tokio-postgres/with-time-0_3"] [dependencies] -bb8 = { version = "0.8", path = "../bb8" } +bb8 = { version = "0.9", path = "../bb8" } tokio = { version = "1.0.0", features = ["rt"] } tokio-postgres = "0.7" diff --git a/redis/Cargo.toml b/redis/Cargo.toml index 2b156ce..9f5d351 100644 --- a/redis/Cargo.toml +++ b/redis/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bb8-redis" -version = "0.17.0" +version = "0.18.0" edition = "2021" rust-version = "1.75" description = "Full-featured async (tokio-based) redis connection pool (like r2d2)" @@ -8,7 +8,7 @@ license = "MIT" repository = "https://github.com/djc/bb8" [dependencies] -bb8 = { version = "0.8", path = "../bb8" } +bb8 = { version = "0.9", path = "../bb8" } redis = { version = "0.27", default-features = false, features = ["tokio-comp"] } [dev-dependencies]