Skip to content

Commit

Permalink
Release postgres-protocol v0.6.6
Browse files Browse the repository at this point in the history
  • Loading branch information
sfackler committed Aug 20, 2023
1 parent a454378 commit 496f46c
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 4 deletions.
6 changes: 6 additions & 0 deletions postgres-protocol/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Change Log

## v0.6.6 -2023-08-19

### Added

* Added the `js` feature for WASM support.

## v0.6.5 - 2023-03-27

### 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.5"
version = "0.6.6"
authors = ["Steven Fackler <[email protected]>"]
edition = "2018"
description = "Low level Postgres protocol APIs"
Expand Down
1 change: 0 additions & 1 deletion postgres-protocol/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@
//!
//! This library assumes that the `client_encoding` backend parameter has been
//! set to `UTF8`. It will most likely not behave properly if that is not the case.
#![doc(html_root_url = "https://docs.rs/postgres-protocol/0.6")]
#![warn(missing_docs, rust_2018_idioms, clippy::all)]

use byteorder::{BigEndian, ByteOrder};
Expand Down
2 changes: 1 addition & 1 deletion postgres-types/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ with-time-0_3 = ["time-03"]
[dependencies]
bytes = "1.0"
fallible-iterator = "0.2"
postgres-protocol = { version = "0.6.4", path = "../postgres-protocol" }
postgres-protocol = { version = "0.6.5", path = "../postgres-protocol" }
postgres-derive = { version = "0.4.2", 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.5", path = "../postgres-protocol" }
postgres-protocol = { version = "0.6.6", path = "../postgres-protocol" }
postgres-types = { version = "0.2.4", path = "../postgres-types" }
tokio = { version = "1.27", features = ["io-util"] }
tokio-util = { version = "0.7", features = ["codec"] }
Expand Down

0 comments on commit 496f46c

Please sign in to comment.