Release tokio-postgres v0.5.3

This commit is contained in:
Steven Fackler 2020-03-05 17:11:46 -08:00
parent d8470a75a5
commit 72e0dbfcc0
2 changed files with 9 additions and 2 deletions

View File

@ -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

View File

@ -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"] }