diff --git a/postgres-protocol/CHANGELOG.md b/postgres-protocol/CHANGELOG.md index b476fcabf..4040c3ba2 100644 --- a/postgres-protocol/CHANGELOG.md +++ b/postgres-protocol/CHANGELOG.md @@ -1,5 +1,15 @@ # Change Log +## v0.6.0 - 2020-12-25 + +### Changed + +* Upgraded `bytes`, `hmac`, and `rand`. + +### Added + +* Added `escape::{escape_literal, escape_identifier}`. + ## v0.5.3 - 2020-10-17 ### Changed diff --git a/postgres-protocol/Cargo.toml b/postgres-protocol/Cargo.toml index ed5bca864..6746cfebd 100644 --- a/postgres-protocol/Cargo.toml +++ b/postgres-protocol/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "postgres-protocol" -version = "0.5.3" +version = "0.6.0" authors = ["Steven Fackler "] edition = "2018" description = "Low level Postgres protocol APIs" diff --git a/postgres-types/Cargo.toml b/postgres-types/Cargo.toml index 00babcce2..0707345fa 100644 --- a/postgres-types/Cargo.toml +++ b/postgres-types/Cargo.toml @@ -24,7 +24,7 @@ with-time-0_2 = ["time-02"] [dependencies] bytes = "1.0" fallible-iterator = "0.2" -postgres-protocol = { version = "0.5.0", path = "../postgres-protocol" } +postgres-protocol = { version = "0.6.0", path = "../postgres-protocol" } postgres-derive = { version = "0.4.0", optional = true, path = "../postgres-derive" } bit-vec-06 = { version = "0.6", package = "bit-vec", optional = true } diff --git a/tokio-postgres/Cargo.toml b/tokio-postgres/Cargo.toml index 1c82f7da8..24d962f65 100644 --- a/tokio-postgres/Cargo.toml +++ b/tokio-postgres/Cargo.toml @@ -47,7 +47,7 @@ parking_lot = "0.11" percent-encoding = "2.0" pin-project-lite = "0.2" phf = "0.8" -postgres-protocol = { version = "0.5.0", path = "../postgres-protocol" } +postgres-protocol = { version = "0.6.0", path = "../postgres-protocol" } postgres-types = { version = "0.1.2", path = "../postgres-types" } socket2 = "0.3" tokio = { version = "1.0", features = ["io-util"] }