From fa3b068da72566e5df9b9a33eeab5b158902516e Mon Sep 17 00:00:00 2001 From: Steven Fackler Date: Wed, 27 Nov 2019 21:01:24 -0500 Subject: [PATCH] Release postgres v0.17.0-alpha.2 --- postgres-native-tls/Cargo.toml | 2 +- postgres-openssl/Cargo.toml | 2 +- postgres/CHANGELOG.md | 10 ++++++++-- postgres/Cargo.toml | 2 +- 4 files changed, 11 insertions(+), 5 deletions(-) diff --git a/postgres-native-tls/Cargo.toml b/postgres-native-tls/Cargo.toml index 644a9c522..a7cd29b50 100644 --- a/postgres-native-tls/Cargo.toml +++ b/postgres-native-tls/Cargo.toml @@ -25,4 +25,4 @@ tokio-postgres = { version = "=0.5.0-alpha.2", path = "../tokio-postgres", defau [dev-dependencies] tokio = { version = "0.2", features = ["full"] } -postgres = { version = "=0.17.0-alpha.1", path = "../postgres" } +postgres = { version = "=0.17.0-alpha.2", path = "../postgres" } diff --git a/postgres-openssl/Cargo.toml b/postgres-openssl/Cargo.toml index 38ca27586..2f36ee378 100644 --- a/postgres-openssl/Cargo.toml +++ b/postgres-openssl/Cargo.toml @@ -25,4 +25,4 @@ tokio-postgres = { version = "=0.5.0-alpha.2", path = "../tokio-postgres", defau [dev-dependencies] tokio = { version = "0.2", features = ["full"] } -postgres = { version = "=0.17.0-alpha.1", path = "../postgres" } +postgres = { version = "=0.17.0-alpha.2", path = "../postgres" } diff --git a/postgres/CHANGELOG.md b/postgres/CHANGELOG.md index 1e25bf5bb..11693ca5e 100644 --- a/postgres/CHANGELOG.md +++ b/postgres/CHANGELOG.md @@ -1,9 +1,15 @@ # Change Log -## Unreleased +## v0.17.0-alpha.2 - 2019-11-27 + +### Changed + +* Changed `Config::executor` to `Config::spawner`. ### Added -* Added support for converting to and from `uuid` crate v0.8 + +* Added support for `uuid` 0.8. +* Added `Transaction::query_one`. ## v0.17.0-alpha.1 - 2019-10-14 diff --git a/postgres/Cargo.toml b/postgres/Cargo.toml index 96dd31200..cab09cea6 100644 --- a/postgres/Cargo.toml +++ b/postgres/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "postgres" -version = "0.17.0-alpha.1" +version = "0.17.0-alpha.2" authors = ["Steven Fackler "] edition = "2018" license = "MIT/Apache-2.0"