diff --git a/postgres/CHANGELOG.md b/postgres/CHANGELOG.md index 6feb629e4..c3e686714 100644 --- a/postgres/CHANGELOG.md +++ b/postgres/CHANGELOG.md @@ -2,6 +2,8 @@ ## Unreleased +## v0.19.9 - 2024-09-15 + ### Added * Added support for `jiff` 0.1 via the `with-jiff-01` feature. diff --git a/postgres/Cargo.toml b/postgres/Cargo.toml index e0e580f7d..9e360c2a4 100644 --- a/postgres/Cargo.toml +++ b/postgres/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "postgres" -version = "0.19.8" +version = "0.19.9" authors = ["Steven Fackler "] edition = "2018" license = "MIT OR Apache-2.0" @@ -41,7 +41,7 @@ bytes = "1.0" fallible-iterator = "0.2" futures-util = { version = "0.3.14", features = ["sink"] } log = "0.4" -tokio-postgres = { version = "0.7.11", path = "../tokio-postgres" } +tokio-postgres = { version = "0.7.12", path = "../tokio-postgres" } tokio = { version = "1.0", features = ["rt", "time"] } [dev-dependencies]