Skip to content

Commit c358077

Browse files
committed
Release postgres-protocol v0.6.7
1 parent 4b9cdca commit c358077

File tree

4 files changed

+19
-4
lines changed

4 files changed

+19
-4
lines changed

postgres-protocol/CHANGELOG.md

+16-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,21 @@
11
# Change Log
22

3-
## v0.6.6 -2023-08-19
3+
## v0.6.7 - 2024-07-21
4+
5+
### Deprecated
6+
7+
* Deprecated `ErrorField::value`.
8+
9+
### Added
10+
11+
* Added a `Clone` implementation for `DataRowBody`.
12+
* Added `ErrorField::value_bytes`.
13+
14+
### Changed
15+
16+
* Upgraded `base64`.
17+
18+
## v0.6.6 - 2023-08-19
419

520
### Added
621

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.6.6"
3+
version = "0.6.7"
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
@@ -31,7 +31,7 @@ with-time-0_3 = ["time-03"]
3131
[dependencies]
3232
bytes = "1.0"
3333
fallible-iterator = "0.2"
34-
postgres-protocol = { version = "0.6.5", path = "../postgres-protocol" }
34+
postgres-protocol = { version = "0.6.7", path = "../postgres-protocol" }
3535
postgres-derive = { version = "0.4.5", optional = true, path = "../postgres-derive" }
3636

3737
array-init = { version = "2", optional = true }

tokio-postgres/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ parking_lot = "0.12"
5454
percent-encoding = "2.0"
5555
pin-project-lite = "0.2"
5656
phf = "0.11"
57-
postgres-protocol = { version = "0.6.6", path = "../postgres-protocol" }
57+
postgres-protocol = { version = "0.6.7", path = "../postgres-protocol" }
5858
postgres-types = { version = "0.2.5", path = "../postgres-types" }
5959
tokio = { version = "1.27", features = ["io-util"] }
6060
tokio-util = { version = "0.7", features = ["codec"] }

0 commit comments

Comments
 (0)