diff --git a/postgres/CHANGELOG.md b/postgres/CHANGELOG.md index 66e66c6f..e68dedc5 100644 --- a/postgres/CHANGELOG.md +++ b/postgres/CHANGELOG.md @@ -1,10 +1,11 @@ # Change Log -## Unreleased +## v0.19.1 - 2021-04-03 ### Added * Added support for `geo-types` 0.7 via `with-geo-types-0_7` feature. +* Added `Client::clear_type_cache`. ## v0.19.0 - 2020-12-25 diff --git a/postgres/Cargo.toml b/postgres/Cargo.toml index 0128f8a4..18219782 100644 --- a/postgres/Cargo.toml +++ b/postgres/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "postgres" -version = "0.19.0" +version = "0.19.1" authors = ["Steven Fackler "] edition = "2018" license = "MIT/Apache-2.0" @@ -34,7 +34,7 @@ with-time-0_2 = ["tokio-postgres/with-time-0_2"] bytes = "1.0" fallible-iterator = "0.2" futures = "0.3" -tokio-postgres = { version = "0.7.0", path = "../tokio-postgres" } +tokio-postgres = { version = "0.7.1", path = "../tokio-postgres" } tokio = { version = "1.0", features = ["rt", "time"] } log = "0.4"