Release postgres v0.16.0-rc.2

This commit is contained in:
Steven Fackler 2019-06-29 21:43:50 -07:00
parent 6464954e07
commit 904c951ad6
5 changed files with 15 additions and 24 deletions

View File

@ -1,14 +1,12 @@
# Change Log
## [Unreleased]
## [v0.4.1] - 2019-06-29
## v0.4.1 - 2019-06-29
### Added
* Added `backend::Framed` to minimally parse the structure of backend messages.
## [v0.4.0] - 2019-03-05
## v0.4.0 - 2019-03-05
### Added
@ -23,7 +21,4 @@
Look at the [release tags] for information about older releases.
[Unreleased]: https://github.com/sfackler/rust-postgres/compare/postgres-protocol-v0.4.1...master
[v0.4.1]: https://github.com/sfackler/rust-postgres/compare/postgres-protocol-v0.4.0...postgres-protocol-v0.4.1
[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

View File

@ -1,8 +1,12 @@
# Change Log
## [Unreleased]
## v0.16.0-rc.2 - 2019-06-29
## [v0.16.0-rc.1] - 2019-04-06
### Fixed
* Documentation fixes
## v0.16.0-rc.1 - 2019-04-06
### Changed
@ -93,6 +97,4 @@
Look at the [release tags] for information about older releases.
[Unreleased]: https://github.com/sfackler/rust-postgres/compare/postgres-v0.16.0-rc.1...master
[v0.16.0-rc.1]: https://github.com/sfackler/rust-postgres/compare/postgres-v0.15.2...postgres-v0.16.0-rc.1
[release tags]: https://github.com/sfackler/rust-postgres/releases

View File

@ -1,6 +1,6 @@
[package]
name = "postgres"
version = "0.16.0-rc.1"
version = "0.16.0-rc.2"
authors = ["Steven Fackler <sfackler@gmail.com>"]
edition = "2018"
license = "MIT/Apache-2.0"

View File

@ -50,9 +50,9 @@
//!
//! TLS support is implemented via external libraries. `Client::connect` and `Config::connect` take a TLS implementation
//! as an argument. The `NoTls` type in this crate can be used when TLS is not required. Otherwise, the
//! `tokio-postgres-openssl` and `tokio-postgres-native-tls` crates provide implementations backed by the `openssl` and
//! `native-tls` crates, respectively.
#![doc(html_root_url = "https://docs.rs/postgres/0.16.0-rc.1")]
//! `postgres-openssl` and `postgres-native-tls` crates provide implementations backed by the `openssl` and `native-tls`
//! crates, respectively.
#![doc(html_root_url = "https://docs.rs/postgres/0.16.0-rc.2")]
#![warn(clippy::all, rust_2018_idioms, missing_docs)]
#[cfg(feature = "runtime")]

View File

@ -1,8 +1,6 @@
# Change Log
## [Unreleased]
## [v0.4.0-rc.3] - 2019-06-29
## v0.4.0-rc.3 - 2019-06-29
### Fixed
@ -12,13 +10,13 @@
* The items of the stream passed to `copy_in` must be `'static`.
## [v0.4.0-rc.2] - 2019-03-05
## v0.4.0-rc.2 - 2019-03-05
### Fixed
* Fixed Cargo features to actually enable the functionality they claim to.
## [v0.4.0-rc.1] - 2019-03-05
## v0.4.0-rc.1 - 2019-03-05
### Changed
@ -53,8 +51,4 @@
Look at the [release tags] for information about older releases.
[Unreleased]: https://github.com/sfackler/rust-postgres/compare/tokio-postgres-v0.4.0-rc.3...master
[v0.4.0-rc.3]: https://github.com/sfackler/rust-postgres/compare/tokio-postgres-v0.4.0-rc.2...tokio-postgres-v0.4.0-rc.3
[v0.4.0-rc.2]: https://github.com/sfackler/rust-postgres/compare/tokio-postgres-v0.4.0-rc.1...tokio-postgres-v0.4.0-rc.2
[v0.4.0-rc.1]: https://github.com/sfackler/rust-postgres/compare/tokio-postgres-v0.3.0...tokio-postgres-v0.4.0-rc.1
[release tags]: https://github.com/sfackler/rust-postgres/releases