From 47d97f0d2ef0b8b24f00e44f62fea8be33178b94 Mon Sep 17 00:00:00 2001 From: Steven Fackler Date: Wed, 27 Nov 2019 20:48:01 -0500 Subject: [PATCH] Relase tokio-postgres v0.5.0-alpha.2 --- postgres-native-tls/Cargo.toml | 2 +- postgres-openssl/Cargo.toml | 2 +- postgres/Cargo.toml | 2 +- tokio-postgres-binary-copy/Cargo.toml | 4 ++-- tokio-postgres/CHANGELOG.md | 14 ++++++++++++-- tokio-postgres/Cargo.toml | 2 +- 6 files changed, 18 insertions(+), 8 deletions(-) diff --git a/postgres-native-tls/Cargo.toml b/postgres-native-tls/Cargo.toml index bd71250b..644a9c52 100644 --- a/postgres-native-tls/Cargo.toml +++ b/postgres-native-tls/Cargo.toml @@ -21,7 +21,7 @@ futures-preview = "=0.3.0-alpha.19" native-tls = "0.2" tokio = "0.2" tokio-tls = "0.3" -tokio-postgres = { version = "=0.5.0-alpha.1", path = "../tokio-postgres", default-features = false } +tokio-postgres = { version = "=0.5.0-alpha.2", path = "../tokio-postgres", default-features = false } [dev-dependencies] tokio = { version = "0.2", features = ["full"] } diff --git a/postgres-openssl/Cargo.toml b/postgres-openssl/Cargo.toml index 7d28a4bb..38ca2758 100644 --- a/postgres-openssl/Cargo.toml +++ b/postgres-openssl/Cargo.toml @@ -21,7 +21,7 @@ futures = "0.3" openssl = "0.10" tokio = "0.2" tokio-openssl = "0.4" -tokio-postgres = { version = "=0.5.0-alpha.1", path = "../tokio-postgres", default-features = false } +tokio-postgres = { version = "=0.5.0-alpha.2", path = "../tokio-postgres", default-features = false } [dev-dependencies] tokio = { version = "0.2", features = ["full"] } diff --git a/postgres/Cargo.toml b/postgres/Cargo.toml index 9625365b..8ab2468f 100644 --- a/postgres/Cargo.toml +++ b/postgres/Cargo.toml @@ -33,7 +33,7 @@ bytes = "0.5" fallible-iterator = "0.2" futures = "0.3" pin-utils = "=0.1.0-alpha.4" -tokio-postgres = { version = "=0.5.0-alpha.1", path = "../tokio-postgres", default-features = false } +tokio-postgres = { version = "=0.5.0-alpha.2", path = "../tokio-postgres", default-features = false } tokio-executor = "=0.2.0-alpha.6" tokio = { version = "0.2", optional = true, features = ["rt-threaded"] } diff --git a/tokio-postgres-binary-copy/Cargo.toml b/tokio-postgres-binary-copy/Cargo.toml index 2832f538..0b64e4f2 100644 --- a/tokio-postgres-binary-copy/Cargo.toml +++ b/tokio-postgres-binary-copy/Cargo.toml @@ -10,8 +10,8 @@ bytes = "0.5" futures = "0.3" parking_lot = "0.10" pin-project-lite = "0.1" -tokio-postgres = { version = "=0.5.0-alpha.1", default-features = false, path = "../tokio-postgres" } +tokio-postgres = { version = "=0.5.0-alpha.2", default-features = false, path = "../tokio-postgres" } [dev-dependencies] tokio = { version = "0.2", features = ["full"] } -tokio-postgres = { version = "=0.5.0-alpha.1", path = "../tokio-postgres" } +tokio-postgres = { version = "=0.5.0-alpha.2", path = "../tokio-postgres" } diff --git a/tokio-postgres/CHANGELOG.md b/tokio-postgres/CHANGELOG.md index 51a3bf8b..85f8bbdd 100644 --- a/tokio-postgres/CHANGELOG.md +++ b/tokio-postgres/CHANGELOG.md @@ -1,9 +1,19 @@ # Change Log -## Unreleased +## v0.5.0-alpha.2 - 2019-11-27 + +### Changed + +* Upgraded `bytes` to 0.5. +* Upgraded `tokio` to 0.2. +* The TLS interface uses a trait to obtain channel binding information rather than returning it after the handshake. +* Changed the value of the `timezone` property from `GMT` to `UTC`. +* Returned `Stream` implementations are now `!Unpin`. ### Added -* Added support for converting to and from `uuid` crate v0.8 + +* Added support for `uuid` 0.8. +* Added the column to `Row::try_get` errors. ## v0.5.0-alpha.1 - 2019-10-14 diff --git a/tokio-postgres/Cargo.toml b/tokio-postgres/Cargo.toml index 381b216d..3568300c 100644 --- a/tokio-postgres/Cargo.toml +++ b/tokio-postgres/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tokio-postgres" -version = "0.5.0-alpha.1" +version = "0.5.0-alpha.2" authors = ["Steven Fackler "] edition = "2018" license = "MIT/Apache-2.0"