From 9ebdca23e1d83d128687e83ef5b54052c67c98af Mon Sep 17 00:00:00 2001 From: Steven Fackler Date: Mon, 14 Oct 2019 17:44:49 -0700 Subject: [PATCH] Release postgres-protocol v0.5.0-alpha.1 --- postgres-protocol/CHANGELOG.md | 6 ++++++ postgres-protocol/Cargo.toml | 2 +- postgres-protocol/src/lib.rs | 2 +- postgres-types/Cargo.toml | 2 +- tokio-postgres/Cargo.toml | 2 +- 5 files changed, 10 insertions(+), 4 deletions(-) diff --git a/postgres-protocol/CHANGELOG.md b/postgres-protocol/CHANGELOG.md index 170e06f8..1a2bd1ec 100644 --- a/postgres-protocol/CHANGELOG.md +++ b/postgres-protocol/CHANGELOG.md @@ -1,5 +1,11 @@ # Change Log +## v0.5.0-alpha.1 - 2019-10-14 + +### Changed + +* Frontend messages and types now serialize to `BytesMut` rather than `Vec`. + ## v0.4.1 - 2019-06-29 ### Added diff --git a/postgres-protocol/Cargo.toml b/postgres-protocol/Cargo.toml index e4d8a506..bb34c0a9 100644 --- a/postgres-protocol/Cargo.toml +++ b/postgres-protocol/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "postgres-protocol" -version = "0.4.1" +version = "0.5.0-alpha.1" authors = ["Steven Fackler "] edition = "2018" description = "Low level Postgres protocol APIs" diff --git a/postgres-protocol/src/lib.rs b/postgres-protocol/src/lib.rs index e7ac84d2..8a9f90e2 100644 --- a/postgres-protocol/src/lib.rs +++ b/postgres-protocol/src/lib.rs @@ -9,7 +9,7 @@ //! //! This library assumes that the `client_encoding` backend parameter has been //! set to `UTF8`. It will most likely not behave properly if that is not the case. -#![doc(html_root_url = "https://docs.rs/postgres-protocol/0.4")] +#![doc(html_root_url = "https://docs.rs/postgres-protocol/0.5")] #![warn(missing_docs, rust_2018_idioms, clippy::all)] use byteorder::{BigEndian, ByteOrder}; diff --git a/postgres-types/Cargo.toml b/postgres-types/Cargo.toml index d68a1ae8..41e05628 100644 --- a/postgres-types/Cargo.toml +++ b/postgres-types/Cargo.toml @@ -16,7 +16,7 @@ with-serde_json-1 = ["serde-1", "serde_json-1"] [dependencies] bytes = "0.4" fallible-iterator = "0.2" -postgres-protocol = { version = "0.4.1", path = "../postgres-protocol" } +postgres-protocol = { version = "=0.5.0-alpha.1", path = "../postgres-protocol" } postgres-derive = { version = "0.3.3", 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 fa04f42c..98b160c1 100644 --- a/tokio-postgres/Cargo.toml +++ b/tokio-postgres/Cargo.toml @@ -40,7 +40,7 @@ percent-encoding = "1.0" pin-utils = "=0.1.0-alpha.4" pin-project = "0.4" phf = "0.7.23" -postgres-protocol = { version = "0.4.1", path = "../postgres-protocol" } +postgres-protocol = { version = "=0.5.0-alpha.1", path = "../postgres-protocol" } postgres-types = { version = "0.1.0", path = "../postgres-types" } tokio = { version = "=0.2.0-alpha.6", default-features = false, features = ["io", "codec"] }