Skip to content

Commit

Permalink
Release postgres-protocol v0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
sfackler committed Dec 23, 2019
1 parent 9e10d78 commit 1c5ceeb
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 3 deletions.
6 changes: 6 additions & 0 deletions postgres-protocol/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion postgres-protocol/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "postgres-protocol"
version = "0.5.0-alpha.2"
version = "0.5.0"
authors = ["Steven Fackler <sfackler@gmail.com>"]
edition = "2018"
description = "Low level Postgres protocol APIs"
Expand Down
2 changes: 1 addition & 1 deletion postgres-types/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }
Expand Down
2 changes: 1 addition & 1 deletion tokio-postgres/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"] }
Expand Down

0 comments on commit 1c5ceeb

Please sign in to comment.