diff --git a/tokio-postgres/CHANGELOG.md b/tokio-postgres/CHANGELOG.md
index bca25f817..e65f00f14 100644
--- a/tokio-postgres/CHANGELOG.md
+++ b/tokio-postgres/CHANGELOG.md
@@ -1,5 +1,12 @@
 # Change Log
 
+## v0.5.3 - 2020-03-05
+
+### Added
+
+* Added `Debug` implementations for `Client`, `Row`, and `Column`.
+* Added `time` 0.2 support.
+
 ## v0.5.2 - 2020-01-31
 
 ### Fixed
diff --git a/tokio-postgres/Cargo.toml b/tokio-postgres/Cargo.toml
index 0d399ae0a..d1571c352 100644
--- a/tokio-postgres/Cargo.toml
+++ b/tokio-postgres/Cargo.toml
@@ -1,6 +1,6 @@
 [package]
 name = "tokio-postgres"
-version = "0.5.2"
+version = "0.5.3"
 authors = ["Steven Fackler <sfackler@gmail.com>"]
 edition = "2018"
 license = "MIT/Apache-2.0"
@@ -47,7 +47,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.0", path = "../postgres-types" }
+postgres-types = { version = "0.1.1", path = "../postgres-types" }
 tokio = { version = "0.2", features = ["io-util"] }
 tokio-util = { version = "0.3", features = ["codec"] }