From 69382d6c7ff7e62939acfcb84c741a6a8bdd6150 Mon Sep 17 00:00:00 2001 From: Pau Freixes Date: Fri, 14 Jun 2024 15:27:22 +0200 Subject: [PATCH] Bump 0.8.5 version Just fixes and issue with the docs which makes available the `Statistics` struct. --- bb8/Cargo.toml | 2 +- bb8/src/lib.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bb8/Cargo.toml b/bb8/Cargo.toml index 3d3e584..77f03c6 100644 --- a/bb8/Cargo.toml +++ b/bb8/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bb8" -version = "0.8.4" +version = "0.8.5" edition = "2021" rust-version = "1.63" description = "Full-featured async (tokio-based) connection pool (like r2d2)" diff --git a/bb8/src/lib.rs b/bb8/src/lib.rs index 952069b..5642cba 100644 --- a/bb8/src/lib.rs +++ b/bb8/src/lib.rs @@ -36,7 +36,7 @@ mod api; pub use api::{ Builder, CustomizeConnection, ErrorSink, ManageConnection, NopErrorSink, Pool, - PooledConnection, QueueStrategy, RunError, State, + PooledConnection, QueueStrategy, RunError, State, Statistics, }; mod inner;