From 1c5ceebe8a6f4fbd8d494e7e145fa53063db46fa Mon Sep 17 00:00:00 2001 From: Steven Fackler Date: Mon, 23 Dec 2019 15:21:52 -0800 Subject: [PATCH] Release postgres-protocol v0.5.0 --- 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 400c2793..375465b2 100644 --- a/postgres-protocol/CHANGELOG.md +++ b/postgres-protocol/CHANGELOG.md @@ -1,5 +1,11 @@ # Change Log +## v0.5.0 - 2019-12-23 + +### Changed + +* `frontend::Message` is now a true non-exhaustive enum. + ## v0.5.0-alpha.2 - 2019-11-27 ### Changed diff --git a/postgres-protocol/Cargo.toml b/postgres-protocol/Cargo.toml index 7331d4e9..155cf62a 100644 --- a/postgres-protocol/Cargo.toml +++ b/postgres-protocol/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "postgres-protocol" -version = "0.5.0-alpha.2" +version = "0.5.0" authors = ["Steven Fackler "] edition = "2018" description = "Low level Postgres protocol APIs" diff --git a/postgres-types/Cargo.toml b/postgres-types/Cargo.toml index 9df51245..504abcd2 100644 --- a/postgres-types/Cargo.toml +++ b/postgres-types/Cargo.toml @@ -22,7 +22,7 @@ with-uuid-0_8 = ["uuid-08"] [dependencies] bytes = "0.5" fallible-iterator = "0.2" -postgres-protocol = { version = "=0.5.0-alpha.2", path = "../postgres-protocol" } +postgres-protocol = { version = "0.5.0", 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 df2707fc..98e054f5 100644 --- a/tokio-postgres/Cargo.toml +++ b/tokio-postgres/Cargo.toml @@ -44,7 +44,7 @@ parking_lot = "0.10" percent-encoding = "2.0" pin-project-lite = "0.1" phf = "0.8" -postgres-protocol = { version = "=0.5.0-alpha.2", path = "../postgres-protocol" } +postgres-protocol = { version = "0.5.0", path = "../postgres-protocol" } postgres-types = { version = "=0.1.0-alpha.2", path = "../postgres-types" } tokio = { version = "0.2", features = ["io-util"] } tokio-util = { version = "0.2", features = ["codec"] }