diff --git a/postgres/CHANGELOG.md b/postgres/CHANGELOG.md index e68dedc5b..6af8d914b 100644 --- a/postgres/CHANGELOG.md +++ b/postgres/CHANGELOG.md @@ -1,5 +1,14 @@ # Change Log +## v0.19.2 - 2021-09-29 + +### Added + +* Added `SimpleQueryRow::columns`. +* Added support for `eui48` 1.0 via the `with-eui48-1` feature. +* Added `FromSql` and `ToSql` implementations for arrays via the `array-impls` feature. +* Added support for `time` 0.3 via the `with-time-0_3` feature. + ## v0.19.1 - 2021-04-03 ### Added diff --git a/postgres/Cargo.toml b/postgres/Cargo.toml index 3d1c20234..b61e42aca 100644 --- a/postgres/Cargo.toml +++ b/postgres/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "postgres" -version = "0.19.1" +version = "0.19.2" authors = ["Steven Fackler "] edition = "2018" license = "MIT/Apache-2.0" @@ -37,7 +37,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.1", path = "../tokio-postgres" } +tokio-postgres = { version = "0.7.2", path = "../tokio-postgres" } tokio = { version = "1.0", features = ["rt", "time"] } log = "0.4" diff --git a/tokio-postgres/CHANGELOG.md b/tokio-postgres/CHANGELOG.md index 2c2ea5bc8..9e70c0045 100644 --- a/tokio-postgres/CHANGELOG.md +++ b/tokio-postgres/CHANGELOG.md @@ -1,6 +1,6 @@ # Change Log -## v0.7.2 - 2021-09-29 +## v0.7.3 - 2021-09-29 ### Fixed