Skip to content

Commit 9ebdca2

Browse files
committed
Release postgres-protocol v0.5.0-alpha.1
1 parent 7b73eee commit 9ebdca2

File tree

5 files changed

+10
-4
lines changed

5 files changed

+10
-4
lines changed

postgres-protocol/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Change Log
22

3+
## v0.5.0-alpha.1 - 2019-10-14
4+
5+
### Changed
6+
7+
* Frontend messages and types now serialize to `BytesMut` rather than `Vec<u8>`.
8+
39
## v0.4.1 - 2019-06-29
410

511
### Added

postgres-protocol/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "postgres-protocol"
3-
version = "0.4.1"
3+
version = "0.5.0-alpha.1"
44
authors = ["Steven Fackler <[email protected]>"]
55
edition = "2018"
66
description = "Low level Postgres protocol APIs"

postgres-protocol/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
//!
1010
//! This library assumes that the `client_encoding` backend parameter has been
1111
//! set to `UTF8`. It will most likely not behave properly if that is not the case.
12-
#![doc(html_root_url = "https://docs.rs/postgres-protocol/0.4")]
12+
#![doc(html_root_url = "https://docs.rs/postgres-protocol/0.5")]
1313
#![warn(missing_docs, rust_2018_idioms, clippy::all)]
1414

1515
use byteorder::{BigEndian, ByteOrder};

postgres-types/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ with-serde_json-1 = ["serde-1", "serde_json-1"]
1616
[dependencies]
1717
bytes = "0.4"
1818
fallible-iterator = "0.2"
19-
postgres-protocol = { version = "0.4.1", path = "../postgres-protocol" }
19+
postgres-protocol = { version = "=0.5.0-alpha.1", path = "../postgres-protocol" }
2020
postgres-derive = { version = "0.3.3", optional = true, path = "../postgres-derive" }
2121

2222
bit-vec-06 = { version = "0.6", package = "bit-vec", optional = true }

tokio-postgres/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ percent-encoding = "1.0"
4040
pin-utils = "=0.1.0-alpha.4"
4141
pin-project = "0.4"
4242
phf = "0.7.23"
43-
postgres-protocol = { version = "0.4.1", path = "../postgres-protocol" }
43+
postgres-protocol = { version = "=0.5.0-alpha.1", path = "../postgres-protocol" }
4444
postgres-types = { version = "0.1.0", path = "../postgres-types" }
4545
tokio = { version = "=0.2.0-alpha.6", default-features = false, features = ["io", "codec"] }
4646

0 commit comments

Comments
 (0)