Skip to content

Commit

Permalink
Release postgres-protocol v0.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
sfackler committed Mar 6, 2019
1 parent c619c74 commit 9385beb
Show file tree
Hide file tree
Showing 4 changed files with 25 additions and 3 deletions.
22 changes: 22 additions & 0 deletions postgres-protocol/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# Change Log

## [Unreleased]

## [v0.4.0] - 2019-05-03

### Added

* Added channel binding support to SCRAM authentication API.

### Changed

* Passwords are no longer required to be UTF8 strings.
* `types::array_to_sql` now automatically computes the required flags and no longer takes a has_nulls parameter.

## Older

Look at the [release tags] for information about older releases.

[Unreleased]: https://github.com/sfackler/rust-postgres/compare/postgres-protocol-v0.4.0...master
[v0.4.0]: https://github.com/sfackler/rust-postgres/compare/postgres-protocol-v0.3.2...postgres-protocol-v0.4.0
[release tags]: https://github.com/sfackler/rust-postgres/releases
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.3.2"
version = "0.4.0"
authors = ["Steven Fackler <[email protected]>"]
edition = "2018"
description = "Low level Postgres protocol APIs"
Expand Down
2 changes: 1 addition & 1 deletion postgres-protocol/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
//!
//! 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.3")]
#![doc(html_root_url = "https://docs.rs/postgres-protocol/0.4")]
#![warn(missing_docs, rust_2018_idioms, clippy::all)]

use byteorder::{BigEndian, ByteOrder};
Expand Down
2 changes: 1 addition & 1 deletion tokio-postgres/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ futures = "0.1.7"
log = "0.4"
percent-encoding = "1.0"
phf = "0.7.23"
postgres-protocol = { version = "0.3.0", path = "../postgres-protocol" }
postgres-protocol = { version = "0.4.0", path = "../postgres-protocol" }
state_machine_future = "0.2"
tokio-codec = "0.1"
tokio-io = "0.1"
Expand Down

0 comments on commit 9385beb

Please sign in to comment.