diff --git a/tokio-postgres/CHANGELOG.md b/tokio-postgres/CHANGELOG.md index bf17ec486..9ee470db6 100644 --- a/tokio-postgres/CHANGELOG.md +++ b/tokio-postgres/CHANGELOG.md @@ -2,9 +2,16 @@ ## Unreleased +## v0.7.12 - 2024-09-15 + +### Fixed + +* Fixed `query_typed` queries that return no rows. + ### Added * Added support for `jiff` 0.1 via the `with-jiff-01` feature. +* Added support for TCP keepalive on AIX. ## v0.7.11 - 2024-07-21 diff --git a/tokio-postgres/Cargo.toml b/tokio-postgres/Cargo.toml index e1e84f7b1..ee6fefb81 100644 --- a/tokio-postgres/Cargo.toml +++ b/tokio-postgres/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tokio-postgres" -version = "0.7.11" +version = "0.7.12" authors = ["Steven Fackler "] edition = "2018" license = "MIT OR Apache-2.0" @@ -56,7 +56,7 @@ percent-encoding = "2.0" pin-project-lite = "0.2" phf = "0.11" postgres-protocol = { version = "0.6.7", path = "../postgres-protocol" } -postgres-types = { version = "0.2.7", path = "../postgres-types" } +postgres-types = { version = "0.2.8", path = "../postgres-types" } tokio = { version = "1.27", features = ["io-util"] } tokio-util = { version = "0.7", features = ["codec"] } rand = "0.8.5"