From 310f0ebfc632f125c93ae7984b7343672a848b5f Mon Sep 17 00:00:00 2001 From: Steven Fackler Date: Sat, 29 Jun 2019 21:18:28 -0700 Subject: [PATCH] Release tokio-postgres v0.4.0-rc.3 --- tokio-postgres/CHANGELOG.md | 13 ++++++++++++- tokio-postgres/Cargo.toml | 2 +- tokio-postgres/src/lib.rs | 2 +- 3 files changed, 14 insertions(+), 3 deletions(-) diff --git a/tokio-postgres/CHANGELOG.md b/tokio-postgres/CHANGELOG.md index 6b833bcc..33be91bb 100644 --- a/tokio-postgres/CHANGELOG.md +++ b/tokio-postgres/CHANGELOG.md @@ -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 diff --git a/tokio-postgres/Cargo.toml b/tokio-postgres/Cargo.toml index 8d247721..8d2d6d00 100644 --- a/tokio-postgres/Cargo.toml +++ b/tokio-postgres/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tokio-postgres" -version = "0.4.0-rc.2" +version = "0.4.0-rc.3" authors = ["Steven Fackler "] edition = "2018" license = "MIT/Apache-2.0" diff --git a/tokio-postgres/src/lib.rs b/tokio-postgres/src/lib.rs index 332c388d..77c5f187 100644 --- a/tokio-postgres/src/lib.rs +++ b/tokio-postgres/src/lib.rs @@ -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;