From 8785773e8e332f665471d79258dcc8f0051ebf27 Mon Sep 17 00:00:00 2001 From: Steven Fackler Date: Sat, 30 Apr 2022 08:56:34 -0400 Subject: [PATCH] Release postgres v0.19.3 --- postgres/CHANGELOG.md | 6 ++++++ postgres/Cargo.toml | 4 ++-- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/postgres/CHANGELOG.md b/postgres/CHANGELOG.md index 6af8d914..5394da80 100644 --- a/postgres/CHANGELOG.md +++ b/postgres/CHANGELOG.md @@ -1,5 +1,11 @@ # Change Log +## v0.19.3 - 2022-04-30 + +### Added + +* Added support for `uuid` 1.0 via the `with-uuid-1` feature. + ## v0.19.2 - 2021-09-29 ### Added diff --git a/postgres/Cargo.toml b/postgres/Cargo.toml index 12f9e98e..be59df10 100644 --- a/postgres/Cargo.toml +++ b/postgres/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "postgres" -version = "0.19.2" +version = "0.19.3" authors = ["Steven Fackler "] edition = "2018" license = "MIT/Apache-2.0" @@ -38,7 +38,7 @@ with-time-0_3 = ["tokio-postgres/with-time-0_3"] bytes = "1.0" fallible-iterator = "0.2" futures = "0.3" -tokio-postgres = { version = "0.7.2", path = "../tokio-postgres" } +tokio-postgres = { version = "0.7.6", path = "../tokio-postgres" } tokio = { version = "1.0", features = ["rt", "time"] } log = "0.4"