Skip to content

Commit

Permalink
Release tokio-postgres v0.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
sfackler committed Oct 17, 2020
1 parent 7fd04e7 commit 12e2f03
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 4 deletions.
2 changes: 1 addition & 1 deletion postgres-native-tls/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ futures = "0.3"
native-tls = "0.2"
tokio = "0.3"
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]
tokio = { version = "0.3", features = ["full"] }
Expand Down
2 changes: 1 addition & 1 deletion postgres-openssl/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ futures = "0.3"
openssl = "0.10"
tokio = "0.3"
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]
tokio = { version = "0.3", features = ["full"] }
Expand Down
2 changes: 1 addition & 1 deletion postgres/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ with-time-0_2 = ["tokio-postgres/with-time-0_2"]
bytes = "0.5"
fallible-iterator = "0.2"
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"] }
log = "0.4"
Expand Down
7 changes: 7 additions & 0 deletions tokio-postgres/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# 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

### Added
Expand Down
2 changes: 1 addition & 1 deletion tokio-postgres/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tokio-postgres"
version = "0.5.5"
version = "0.6.0"
authors = ["Steven Fackler <[email protected]>"]
edition = "2018"
license = "MIT/Apache-2.0"
Expand Down

0 comments on commit 12e2f03

Please sign in to comment.