diff --git a/postgres-native-tls/Cargo.toml b/postgres-native-tls/Cargo.toml index 21b21c9eb..b73a3bcca 100644 --- a/postgres-native-tls/Cargo.toml +++ b/postgres-native-tls/Cargo.toml @@ -24,4 +24,4 @@ tokio-postgres = { version = "0.6.0", path = "../tokio-postgres", default-featur [dev-dependencies] tokio = { version = "0.3", features = ["full"] } -postgres = { version = "0.17.0", path = "../postgres" } +postgres = { version = "0.18.0", path = "../postgres" } diff --git a/postgres-openssl/Cargo.toml b/postgres-openssl/Cargo.toml index d9bff72b8..bd5c64faa 100644 --- a/postgres-openssl/Cargo.toml +++ b/postgres-openssl/Cargo.toml @@ -24,4 +24,4 @@ tokio-postgres = { version = "0.6.0", path = "../tokio-postgres", default-featur [dev-dependencies] tokio = { version = "0.3", features = ["full"] } -postgres = { version = "0.17.0", path = "../postgres" } +postgres = { version = "0.18.0", path = "../postgres" } diff --git a/postgres/CHANGELOG.md b/postgres/CHANGELOG.md index 965bd2b09..c4e6b948d 100644 --- a/postgres/CHANGELOG.md +++ b/postgres/CHANGELOG.md @@ -1,5 +1,19 @@ # Change Log +## v0.18.0 - 2020-10-17 + +### Changed + +* Upgraded to `tokio-postgres` 0.6. + +### Added + +* Added `Config::notice_callback`, which can be used to provide a custom callback for notices. + +### Fixed + +* Fixed client shutdown to explicitly terminate the database session. + ## v0.17.5 - 2020-07-19 ### Fixed diff --git a/postgres/Cargo.toml b/postgres/Cargo.toml index 24dc211eb..da4c6259f 100644 --- a/postgres/Cargo.toml +++ b/postgres/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "postgres" -version = "0.17.5" +version = "0.18.0" authors = ["Steven Fackler "] edition = "2018" license = "MIT/Apache-2.0"