Release postgres-protocol v0.5.0-alpha.1

This commit is contained in:
Steven Fackler 2019-10-14 17:44:49 -07:00
parent 7b73eee3fb
commit 9ebdca23e1
5 changed files with 10 additions and 4 deletions

View File

@ -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<u8>`.
## v0.4.1 - 2019-06-29
### Added

View File

@ -1,6 +1,6 @@
[package]
name = "postgres-protocol"
version = "0.4.1"
version = "0.5.0-alpha.1"
authors = ["Steven Fackler <sfackler@gmail.com>"]
edition = "2018"
description = "Low level Postgres protocol APIs"

View File

@ -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};

View File

@ -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 }

View File

@ -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"] }