Skip to content

Commit 12e2f03

Browse files
committed
Release tokio-postgres v0.6.0
1 parent 7fd04e7 commit 12e2f03

File tree

5 files changed

+11
-4
lines changed

5 files changed

+11
-4
lines changed

postgres-native-tls/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ futures = "0.3"
2020
native-tls = "0.2"
2121
tokio = "0.3"
2222
tokio-native-tls = "0.2"
23-
tokio-postgres = { version = "0.5.0", path = "../tokio-postgres", default-features = false }
23+
tokio-postgres = { version = "0.6.0", path = "../tokio-postgres", default-features = false }
2424

2525
[dev-dependencies]
2626
tokio = { version = "0.3", features = ["full"] }

postgres-openssl/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ futures = "0.3"
2020
openssl = "0.10"
2121
tokio = "0.3"
2222
tokio-openssl = "0.5"
23-
tokio-postgres = { version = "0.5.0", path = "../tokio-postgres", default-features = false }
23+
tokio-postgres = { version = "0.6.0", path = "../tokio-postgres", default-features = false }
2424

2525
[dev-dependencies]
2626
tokio = { version = "0.3", features = ["full"] }

postgres/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ with-time-0_2 = ["tokio-postgres/with-time-0_2"]
3434
bytes = "0.5"
3535
fallible-iterator = "0.2"
3636
futures = "0.3"
37-
tokio-postgres = { version = "0.5.5", path = "../tokio-postgres" }
37+
tokio-postgres = { version = "0.6.0", path = "../tokio-postgres" }
3838

3939
tokio = { version = "0.3", features = ["rt", "time"] }
4040
log = "0.4"

tokio-postgres/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Change Log
22

3+
## v0.6.0 - 2020-10-17
4+
5+
### Changed
6+
7+
* Upgraded to tokio `0.3`.
8+
* Added the detail and hint fields to `DbError`'s `Display` implementation.
9+
310
## v0.5.5 - 2020-07-03
411

512
### Added

tokio-postgres/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tokio-postgres"
3-
version = "0.5.5"
3+
version = "0.6.0"
44
authors = ["Steven Fackler <[email protected]>"]
55
edition = "2018"
66
license = "MIT/Apache-2.0"

0 commit comments

Comments
 (0)