diff --git a/tokio-postgres/CHANGELOG.md b/tokio-postgres/CHANGELOG.md index de25e561..a02c461a 100644 --- a/tokio-postgres/CHANGELOG.md +++ b/tokio-postgres/CHANGELOG.md @@ -1,6 +1,12 @@ # Change Log -## v0.5.4- 2020-05-01 +## v0.5.5 - 2020-07-03 + +### Added + +* Added support for `geo-types` 0.6. + +## v0.5.4 - 2020-05-01 ### Added diff --git a/tokio-postgres/Cargo.toml b/tokio-postgres/Cargo.toml index 6ab4f67b..dfc9bb0a 100644 --- a/tokio-postgres/Cargo.toml +++ b/tokio-postgres/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tokio-postgres" -version = "0.5.4" +version = "0.5.5" authors = ["Steven Fackler "] edition = "2018" license = "MIT/Apache-2.0" @@ -48,7 +48,7 @@ percent-encoding = "2.0" pin-project-lite = "0.1" phf = "0.8" postgres-protocol = { version = "0.5.0", path = "../postgres-protocol" } -postgres-types = { version = "0.1.1", path = "../postgres-types" } +postgres-types = { version = "0.1.2", path = "../postgres-types" } tokio = { version = "0.2", features = ["io-util"] } tokio-util = { version = "0.3", features = ["codec"] }