Release postgres-protocol v0.6.0

This commit is contained in:
Steven Fackler 2020-12-25 08:51:17 -05:00
parent 31de75871e
commit 06dcebf248
4 changed files with 13 additions and 3 deletions

View File

@ -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

View File

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

View File

@ -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 }

View File

@ -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"] }