From cc9b8232a858099e11f8b9e8632566f9b6103a81 Mon Sep 17 00:00:00 2001 From: Steven Fackler Date: Fri, 31 Jan 2020 18:04:47 -0800 Subject: [PATCH] Release postgres v0.17.1 --- postgres/CHANGELOG.md | 9 +++++++++ postgres/Cargo.toml | 4 ++-- tokio-postgres/CHANGELOG.md | 2 +- 3 files changed, 12 insertions(+), 3 deletions(-) diff --git a/postgres/CHANGELOG.md b/postgres/CHANGELOG.md index 686830db1..988578d46 100644 --- a/postgres/CHANGELOG.md +++ b/postgres/CHANGELOG.md @@ -1,5 +1,14 @@ # Change Log +## v0.17.1 - 2020-01-31 + +### Added + +* Added `Client::build_transaction` to allow configuration of various transaction options. +* Added `Client::cancel_token`, which returns a separate owned object that can be used to cancel queries. +* Added accessors for `Config` fields. +* Added a `GenericClient` trait implemented for `Client` and `Transaction` and covering shared functionality. + ## v0.17.0 - 2019-12-23 ### Changed diff --git a/postgres/Cargo.toml b/postgres/Cargo.toml index 41d500325..6ba57b113 100644 --- a/postgres/Cargo.toml +++ b/postgres/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "postgres" -version = "0.17.0" +version = "0.17.1" authors = ["Steven Fackler "] edition = "2018" license = "MIT/Apache-2.0" @@ -32,7 +32,7 @@ with-uuid-0_8 = ["tokio-postgres/with-uuid-0_8"] bytes = "0.5" fallible-iterator = "0.2" futures = "0.3" -tokio-postgres = { version = "0.5.0", path = "../tokio-postgres" } +tokio-postgres = { version = "0.5.2", path = "../tokio-postgres" } tokio = { version = "0.2", features = ["rt-core"] } log = "0.4" diff --git a/tokio-postgres/CHANGELOG.md b/tokio-postgres/CHANGELOG.md index c40f7e133..bca25f817 100644 --- a/tokio-postgres/CHANGELOG.md +++ b/tokio-postgres/CHANGELOG.md @@ -15,7 +15,7 @@ * Added `Client::build_transaction` to allow configuration of various transaction options. * Added `Client::cancel_token`, which returns a separate owned object that can be used to cancel queries. -* Added accessors for `Client` fields. +* Added accessors for `Config` fields. * Added a `GenericClient` trait implemented for `Client` and `Transaction` and covering shared functionality. ## v0.5.1 - 2019-12-25