Release postgres-protocol v0.5.0-alpha.2

This commit is contained in:
Steven Fackler 2019-11-27 20:32:13 -05:00
parent 4a51a7e00a
commit 2d083ec1c8
4 changed files with 9 additions and 3 deletions

View File

@ -1,5 +1,11 @@
# Change Log # Change Log
## v0.5.0-alpha.2 - 2019-11-27
### Changed
* Upgraded `bytes` to 0.5.
## v0.5.0-alpha.1 - 2019-10-14 ## v0.5.0-alpha.1 - 2019-10-14
### Changed ### Changed

View File

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

View File

@ -23,7 +23,7 @@ with-uuid-0_8 = ["uuid-08"]
[dependencies] [dependencies]
bytes = "0.5" bytes = "0.5"
fallible-iterator = "0.2" 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" } postgres-derive = { version = "=0.4.0-alpha.1", optional = true, path = "../postgres-derive" }
bit-vec-06 = { version = "0.6", package = "bit-vec", optional = true } bit-vec-06 = { version = "0.6", package = "bit-vec", optional = true }

View File

@ -44,7 +44,7 @@ parking_lot = "0.9"
percent-encoding = "2.0" percent-encoding = "2.0"
pin-project-lite = "0.1" pin-project-lite = "0.1"
phf = "0.8" 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" } postgres-types = { version = "=0.1.0-alpha.1", path = "../postgres-types" }
tokio = { version = "0.2", features = ["io-util"] } tokio = { version = "0.2", features = ["io-util"] }
tokio-util = { version = "0.2", features = ["codec"] } tokio-util = { version = "0.2", features = ["codec"] }