From 47d83d57a02c3b96b11ce15688764b0c320c6e93 Mon Sep 17 00:00:00 2001 From: Steven Fackler Date: Sat, 29 Jun 2019 21:06:23 -0700 Subject: [PATCH] Release postgres-protocol v0.4.1 --- postgres-protocol/CHANGELOG.md | 11 +++++++++-- postgres-protocol/Cargo.toml | 2 +- tokio-postgres/Cargo.toml | 2 +- 3 files changed, 11 insertions(+), 4 deletions(-) diff --git a/postgres-protocol/CHANGELOG.md b/postgres-protocol/CHANGELOG.md index 71ca501c8..7d24a6a25 100644 --- a/postgres-protocol/CHANGELOG.md +++ b/postgres-protocol/CHANGELOG.md @@ -2,7 +2,13 @@ ## [Unreleased] -## [v0.4.0] - 2019-05-03 +## [v0.4.1] - 2019-06-29 + +### Added + +* Added `backend::Framed` to minimally parse the structure of backend messages. + +## [v0.4.0] - 2019-03-05 ### Added @@ -17,6 +23,7 @@ Look at the [release tags] for information about older releases. -[Unreleased]: https://github.com/sfackler/rust-postgres/compare/postgres-protocol-v0.4.0...master +[Unreleased]: https://github.com/sfackler/rust-postgres/compare/postgres-protocol-v0.4.1...master +[v0.4.1]: https://github.com/sfackler/rust-postgres/compare/postgres-protocol-v0.4.0...postgres-protocol-v0.4.1 [v0.4.0]: https://github.com/sfackler/rust-postgres/compare/postgres-protocol-v0.3.2...postgres-protocol-v0.4.0 [release tags]: https://github.com/sfackler/rust-postgres/releases diff --git a/postgres-protocol/Cargo.toml b/postgres-protocol/Cargo.toml index 993e3a27d..e4d8a5069 100644 --- a/postgres-protocol/Cargo.toml +++ b/postgres-protocol/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "postgres-protocol" -version = "0.4.0" +version = "0.4.1" authors = ["Steven Fackler "] edition = "2018" description = "Low level Postgres protocol APIs" diff --git a/tokio-postgres/Cargo.toml b/tokio-postgres/Cargo.toml index bcdef6db1..8d2477216 100644 --- a/tokio-postgres/Cargo.toml +++ b/tokio-postgres/Cargo.toml @@ -38,7 +38,7 @@ futures = "0.1.7" log = "0.4" percent-encoding = "1.0" phf = "0.7.23" -postgres-protocol = { version = "0.4.0", path = "../postgres-protocol" } +postgres-protocol = { version = "0.4.1", path = "../postgres-protocol" } state_machine_future = "0.2" tokio-codec = "0.1" tokio-io = "0.1"