Skip to content

Commit

Permalink
Release postgres-protocol v0.6.7
Browse files Browse the repository at this point in the history
  • Loading branch information
sfackler committed Jul 22, 2024
1 parent 4b9cdca commit c358077
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 4 deletions.
17 changes: 16 additions & 1 deletion postgres-protocol/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,21 @@
# Change Log

## v0.6.6 -2023-08-19
## v0.6.7 - 2024-07-21

### Deprecated

* Deprecated `ErrorField::value`.

### Added

* Added a `Clone` implementation for `DataRowBody`.
* Added `ErrorField::value_bytes`.

### Changed

* Upgraded `base64`.

## v0.6.6 - 2023-08-19

### Added

Expand Down
2 changes: 1 addition & 1 deletion postgres-protocol/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "postgres-protocol"
version = "0.6.6"
version = "0.6.7"
authors = ["Steven Fackler <sfackler@gmail.com>"]
edition = "2018"
description = "Low level Postgres protocol APIs"
Expand Down
2 changes: 1 addition & 1 deletion postgres-types/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ with-time-0_3 = ["time-03"]
[dependencies]
bytes = "1.0"
fallible-iterator = "0.2"
postgres-protocol = { version = "0.6.5", path = "../postgres-protocol" }
postgres-protocol = { version = "0.6.7", path = "../postgres-protocol" }
postgres-derive = { version = "0.4.5", optional = true, path = "../postgres-derive" }

array-init = { version = "2", optional = true }
Expand Down
2 changes: 1 addition & 1 deletion tokio-postgres/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ parking_lot = "0.12"
percent-encoding = "2.0"
pin-project-lite = "0.2"
phf = "0.11"
postgres-protocol = { version = "0.6.6", path = "../postgres-protocol" }
postgres-protocol = { version = "0.6.7", path = "../postgres-protocol" }
postgres-types = { version = "0.2.5", path = "../postgres-types" }
tokio = { version = "1.27", features = ["io-util"] }
tokio-util = { version = "0.7", features = ["codec"] }
Expand Down

0 comments on commit c358077

Please sign in to comment.