diff --git a/postgres/CHANGELOG.md b/postgres/CHANGELOG.md index 550f0c70..d951ed44 100644 --- a/postgres/CHANGELOG.md +++ b/postgres/CHANGELOG.md @@ -1,5 +1,16 @@ # Change Log +## v0.17.3 - 2020-05-01 + +### Fixed + +* Errors sent by the server will now be returned from `Client` methods rather than just being logs. + +### Added + +* Added `Transaction::savepoint`, which can be used to create a savepoint with a custom name. +* Added `Client::notifications`, which returns an interface to the notifications sent by the server. + ## v0.17.2 - 2020-03-05 ### Added diff --git a/postgres/Cargo.toml b/postgres/Cargo.toml index d0cf1100..601095da 100644 --- a/postgres/Cargo.toml +++ b/postgres/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "postgres" -version = "0.17.2" +version = "0.17.3" authors = ["Steven Fackler "] edition = "2018" license = "MIT/Apache-2.0" @@ -33,7 +33,7 @@ with-time-0_2 = ["tokio-postgres/with-time-0_2"] bytes = "0.5" fallible-iterator = "0.2" futures = "0.3" -tokio-postgres = { version = "0.5.3", path = "../tokio-postgres" } +tokio-postgres = { version = "0.5.4", path = "../tokio-postgres" } tokio = { version = "0.2", features = ["rt-core", "time"] } log = "0.4"