From 2d083ec1c89fb08010b9712081b6491667641169 Mon Sep 17 00:00:00 2001 From: Steven Fackler Date: Wed, 27 Nov 2019 20:32:13 -0500 Subject: [PATCH] Release postgres-protocol v0.5.0-alpha.2 --- postgres-protocol/CHANGELOG.md | 6 ++++++ postgres-protocol/Cargo.toml | 2 +- postgres-types/Cargo.toml | 2 +- tokio-postgres/Cargo.toml | 2 +- 4 files changed, 9 insertions(+), 3 deletions(-) diff --git a/postgres-protocol/CHANGELOG.md b/postgres-protocol/CHANGELOG.md index 1a2bd1ec..400c2793 100644 --- a/postgres-protocol/CHANGELOG.md +++ b/postgres-protocol/CHANGELOG.md @@ -1,5 +1,11 @@ # Change Log +## v0.5.0-alpha.2 - 2019-11-27 + +### Changed + +* Upgraded `bytes` to 0.5. + ## v0.5.0-alpha.1 - 2019-10-14 ### Changed diff --git a/postgres-protocol/Cargo.toml b/postgres-protocol/Cargo.toml index baba826c..7ad9d499 100644 --- a/postgres-protocol/Cargo.toml +++ b/postgres-protocol/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "postgres-protocol" -version = "0.5.0-alpha.1" +version = "0.5.0-alpha.2" authors = ["Steven Fackler "] edition = "2018" description = "Low level Postgres protocol APIs" diff --git a/postgres-types/Cargo.toml b/postgres-types/Cargo.toml index 480446c4..ed14afd0 100644 --- a/postgres-types/Cargo.toml +++ b/postgres-types/Cargo.toml @@ -23,7 +23,7 @@ with-uuid-0_8 = ["uuid-08"] [dependencies] bytes = "0.5" fallible-iterator = "0.2" -postgres-protocol = { version = "=0.5.0-alpha.1", path = "../postgres-protocol" } +postgres-protocol = { version = "=0.5.0-alpha.2", path = "../postgres-protocol" } postgres-derive = { version = "=0.4.0-alpha.1", optional = true, path = "../postgres-derive" } bit-vec-06 = { version = "0.6", package = "bit-vec", optional = true } diff --git a/tokio-postgres/Cargo.toml b/tokio-postgres/Cargo.toml index bf6d543c..501d3eb0 100644 --- a/tokio-postgres/Cargo.toml +++ b/tokio-postgres/Cargo.toml @@ -44,7 +44,7 @@ parking_lot = "0.9" percent-encoding = "2.0" pin-project-lite = "0.1" phf = "0.8" -postgres-protocol = { version = "=0.5.0-alpha.1", path = "../postgres-protocol" } +postgres-protocol = { version = "=0.5.0-alpha.2", path = "../postgres-protocol" } postgres-types = { version = "=0.1.0-alpha.1", path = "../postgres-types" } tokio = { version = "0.2", features = ["io-util"] } tokio-util = { version = "0.2", features = ["codec"] }