Release tokio-postgres v0.4.0-rc.3

This commit is contained in:
Steven Fackler 2019-06-29 21:18:28 -07:00
parent 47d83d57a0
commit 310f0ebfc6
3 changed files with 14 additions and 3 deletions

View File

@ -2,6 +2,16 @@
## [Unreleased]
## [v0.4.0-rc.3] - 2019-06-29
### Fixed
* Significantly improved the performance of `query` and `copy_in`.
### Changed
* The items of the stream passed to `copy_in` must be `'static`.
## [v0.4.0-rc.2] - 2019-03-05
### Fixed
@ -43,7 +53,8 @@
Look at the [release tags] for information about older releases.
[Unreleased]: https://github.com/sfackler/rust-postgres/compare/tokio-postgres-v0.4.0-rc.2...master
[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

View File

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

View File

@ -108,7 +108,7 @@
//! as an argument. The `NoTls` type in this crate can be used when TLS is not required. Otherwise, the
//! `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/tokio-postgres/0.4.0-rc.1")]
#![doc(html_root_url = "https://docs.rs/tokio-postgres/0.4.0-rc.3")]
#![warn(rust_2018_idioms, clippy::all, missing_docs)]
use bytes::IntoBuf;