Release tokio-postgres v0.4.0-rc.3
This commit is contained in:
parent
47d83d57a0
commit
310f0ebfc6
@ -2,6 +2,16 @@
|
|||||||
|
|
||||||
## [Unreleased]
|
## [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
|
## [v0.4.0-rc.2] - 2019-03-05
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
@ -43,7 +53,8 @@
|
|||||||
|
|
||||||
Look at the [release tags] for information about older releases.
|
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.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
|
[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
|
[release tags]: https://github.com/sfackler/rust-postgres/releases
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "tokio-postgres"
|
name = "tokio-postgres"
|
||||||
version = "0.4.0-rc.2"
|
version = "0.4.0-rc.3"
|
||||||
authors = ["Steven Fackler <sfackler@gmail.com>"]
|
authors = ["Steven Fackler <sfackler@gmail.com>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
license = "MIT/Apache-2.0"
|
license = "MIT/Apache-2.0"
|
||||||
|
@ -108,7 +108,7 @@
|
|||||||
//! as an argument. The `NoTls` type in this crate can be used when TLS is not required. Otherwise, the
|
//! 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`
|
//! `postgres-openssl` and `postgres-native-tls` crates provide implementations backed by the `openssl` and `native-tls`
|
||||||
//! crates, respectively.
|
//! 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)]
|
#![warn(rust_2018_idioms, clippy::all, missing_docs)]
|
||||||
|
|
||||||
use bytes::IntoBuf;
|
use bytes::IntoBuf;
|
||||||
|
Loading…
Reference in New Issue
Block a user