Skip to content

Commit 06dcebf

Browse files
committed
Release postgres-protocol v0.6.0
1 parent 31de758 commit 06dcebf

File tree

4 files changed

+13
-3
lines changed

4 files changed

+13
-3
lines changed

postgres-protocol/CHANGELOG.md

+10
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# Change Log
22

3+
## v0.6.0 - 2020-12-25
4+
5+
### Changed
6+
7+
* Upgraded `bytes`, `hmac`, and `rand`.
8+
9+
### Added
10+
11+
* Added `escape::{escape_literal, escape_identifier}`.
12+
313
## v0.5.3 - 2020-10-17
414

515
### Changed

postgres-protocol/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "postgres-protocol"
3-
version = "0.5.3"
3+
version = "0.6.0"
44
authors = ["Steven Fackler <sfackler@gmail.com>"]
55
edition = "2018"
66
description = "Low level Postgres protocol APIs"

postgres-types/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ with-time-0_2 = ["time-02"]
2424
[dependencies]
2525
bytes = "1.0"
2626
fallible-iterator = "0.2"
27-
postgres-protocol = { version = "0.5.0", path = "../postgres-protocol" }
27+
postgres-protocol = { version = "0.6.0", path = "../postgres-protocol" }
2828
postgres-derive = { version = "0.4.0", optional = true, path = "../postgres-derive" }
2929

3030
bit-vec-06 = { version = "0.6", package = "bit-vec", optional = true }

tokio-postgres/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ parking_lot = "0.11"
4747
percent-encoding = "2.0"
4848
pin-project-lite = "0.2"
4949
phf = "0.8"
50-
postgres-protocol = { version = "0.5.0", path = "../postgres-protocol" }
50+
postgres-protocol = { version = "0.6.0", path = "../postgres-protocol" }
5151
postgres-types = { version = "0.1.2", path = "../postgres-types" }
5252
socket2 = "0.3"
5353
tokio = { version = "1.0", features = ["io-util"] }

0 commit comments

Comments
 (0)