Skip to content

Commit 9385beb

Browse files
committed
Release postgres-protocol v0.4.0
1 parent c619c74 commit 9385beb

File tree

4 files changed

+25
-3
lines changed

4 files changed

+25
-3
lines changed

postgres-protocol/CHANGELOG.md

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# Change Log
2+
3+
## [Unreleased]
4+
5+
## [v0.4.0] - 2019-05-03
6+
7+
### Added
8+
9+
* Added channel binding support to SCRAM authentication API.
10+
11+
### Changed
12+
13+
* Passwords are no longer required to be UTF8 strings.
14+
* `types::array_to_sql` now automatically computes the required flags and no longer takes a has_nulls parameter.
15+
16+
## Older
17+
18+
Look at the [release tags] for information about older releases.
19+
20+
[Unreleased]: https://github.com/sfackler/rust-postgres/compare/postgres-protocol-v0.4.0...master
21+
[v0.4.0]: https://github.com/sfackler/rust-postgres/compare/postgres-protocol-v0.3.2...postgres-protocol-v0.4.0
22+
[release tags]: https://github.com/sfackler/rust-postgres/releases

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.3.2"
3+
version = "0.4.0"
44
authors = ["Steven Fackler <[email protected]>"]
55
edition = "2018"
66
description = "Low level Postgres protocol APIs"

postgres-protocol/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
//!
1010
//! This library assumes that the `client_encoding` backend parameter has been
1111
//! set to `UTF8`. It will most likely not behave properly if that is not the case.
12-
#![doc(html_root_url = "https://docs.rs/postgres-protocol/0.3")]
12+
#![doc(html_root_url = "https://docs.rs/postgres-protocol/0.4")]
1313
#![warn(missing_docs, rust_2018_idioms, clippy::all)]
1414

1515
use byteorder::{BigEndian, ByteOrder};

tokio-postgres/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ futures = "0.1.7"
4545
log = "0.4"
4646
percent-encoding = "1.0"
4747
phf = "0.7.23"
48-
postgres-protocol = { version = "0.3.0", path = "../postgres-protocol" }
48+
postgres-protocol = { version = "0.4.0", path = "../postgres-protocol" }
4949
state_machine_future = "0.2"
5050
tokio-codec = "0.1"
5151
tokio-io = "0.1"

0 commit comments

Comments
 (0)