From 57164c7e59f31be016980e7874fd7b8a4c92d40a Mon Sep 17 00:00:00 2001 From: Steven Fackler Date: Sat, 3 Apr 2021 17:12:50 -0400 Subject: [PATCH] Release tokio-postgres v0.7.1 --- tokio-postgres/CHANGELOG.md | 4 +++- tokio-postgres/Cargo.toml | 6 +++--- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/tokio-postgres/CHANGELOG.md b/tokio-postgres/CHANGELOG.md index db984ca1..7cc6c707 100644 --- a/tokio-postgres/CHANGELOG.md +++ b/tokio-postgres/CHANGELOG.md @@ -1,10 +1,12 @@ # Change Log -## Unreleased +## v0.7.1 - 2020-04-03 ### Added * Added support for `geo-types` 0.7 via `with-geo-types-0_7` feature. +* Added `Client::clear_type_cache`. +* Added `Error::as_db_error` and `Error::is_closed`. ## v0.7.0 - 2020-12-25 diff --git a/tokio-postgres/Cargo.toml b/tokio-postgres/Cargo.toml index c03f8708..b1d093d4 100644 --- a/tokio-postgres/Cargo.toml +++ b/tokio-postgres/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tokio-postgres" -version = "0.7.0" +version = "0.7.1" authors = ["Steven Fackler "] edition = "2018" license = "MIT/Apache-2.0" @@ -47,8 +47,8 @@ parking_lot = "0.11" percent-encoding = "2.0" pin-project-lite = "0.2" phf = "0.8" -postgres-protocol = { version = "0.6.0", path = "../postgres-protocol" } -postgres-types = { version = "0.2.0", path = "../postgres-types" } +postgres-protocol = { version = "0.6.1", path = "../postgres-protocol" } +postgres-types = { version = "0.2.1", path = "../postgres-types" } socket2 = "0.4" tokio = { version = "1.0", features = ["io-util"] } tokio-util = { version = "0.6", features = ["codec"] }