Release tokio-postgres v0.6.0

This commit is contained in:
Steven Fackler 2020-10-17 15:05:09 -04:00
parent 7fd04e7a21
commit 12e2f03b53
5 changed files with 11 additions and 4 deletions

View File

@ -20,7 +20,7 @@ futures = "0.3"
native-tls = "0.2" native-tls = "0.2"
tokio = "0.3" tokio = "0.3"
tokio-native-tls = "0.2" tokio-native-tls = "0.2"
tokio-postgres = { version = "0.5.0", path = "../tokio-postgres", default-features = false } tokio-postgres = { version = "0.6.0", path = "../tokio-postgres", default-features = false }
[dev-dependencies] [dev-dependencies]
tokio = { version = "0.3", features = ["full"] } tokio = { version = "0.3", features = ["full"] }

View File

@ -20,7 +20,7 @@ futures = "0.3"
openssl = "0.10" openssl = "0.10"
tokio = "0.3" tokio = "0.3"
tokio-openssl = "0.5" tokio-openssl = "0.5"
tokio-postgres = { version = "0.5.0", path = "../tokio-postgres", default-features = false } tokio-postgres = { version = "0.6.0", path = "../tokio-postgres", default-features = false }
[dev-dependencies] [dev-dependencies]
tokio = { version = "0.3", features = ["full"] } tokio = { version = "0.3", features = ["full"] }

View File

@ -34,7 +34,7 @@ with-time-0_2 = ["tokio-postgres/with-time-0_2"]
bytes = "0.5" bytes = "0.5"
fallible-iterator = "0.2" fallible-iterator = "0.2"
futures = "0.3" futures = "0.3"
tokio-postgres = { version = "0.5.5", path = "../tokio-postgres" } tokio-postgres = { version = "0.6.0", path = "../tokio-postgres" }
tokio = { version = "0.3", features = ["rt", "time"] } tokio = { version = "0.3", features = ["rt", "time"] }
log = "0.4" log = "0.4"

View File

@ -1,5 +1,12 @@
# Change Log # Change Log
## v0.6.0 - 2020-10-17
### Changed
* Upgraded to tokio `0.3`.
* Added the detail and hint fields to `DbError`'s `Display` implementation.
## v0.5.5 - 2020-07-03 ## v0.5.5 - 2020-07-03
### Added ### Added

View File

@ -1,6 +1,6 @@
[package] [package]
name = "tokio-postgres" name = "tokio-postgres"
version = "0.5.5" version = "0.6.0"
authors = ["Steven Fackler <sfackler@gmail.com>"] authors = ["Steven Fackler <sfackler@gmail.com>"]
edition = "2018" edition = "2018"
license = "MIT/Apache-2.0" license = "MIT/Apache-2.0"