From d34f65b6a07e22beba8dfcd35d41ce8bfe6ea7a7 Mon Sep 17 00:00:00 2001 From: Dirkjan Ochtman Date: Mon, 16 Nov 2020 09:49:47 +0100 Subject: [PATCH] Bump version numbers --- bb8/Cargo.toml | 2 +- postgres/Cargo.toml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/bb8/Cargo.toml b/bb8/Cargo.toml index e1d5a24..5d3323c 100644 --- a/bb8/Cargo.toml +++ b/bb8/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bb8" -version = "0.5.0" +version = "0.6.0" authors = ["Dirkjan Ochtman ", "Kyle Huey "] description = "Full-featured async (tokio-based) connection pool (like r2d2)" license = "MIT" diff --git a/postgres/Cargo.toml b/postgres/Cargo.toml index 3df1eec..60ba3f3 100644 --- a/postgres/Cargo.toml +++ b/postgres/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bb8-postgres" -version = "0.5.0" +version = "0.6.0" authors = ["Dirkjan Ochtman ", "Kyle Huey "] description = "Full-featured async (tokio-based) postgres connection pool (like r2d2)" license = "MIT" @@ -17,7 +17,7 @@ edition = "2018" [dependencies] async-trait = "0.1" -bb8 = { version = "0.5.0", path = "../bb8" } +bb8 = { version = "0.6.0", path = "../bb8" } tokio = { version = "0.3.3", features = ["rt"] } tokio-postgres = "0.6"