Skip to content

Commit 310f0eb

Browse files
committed
Release tokio-postgres v0.4.0-rc.3
1 parent 47d83d5 commit 310f0eb

File tree

3 files changed

+14
-3
lines changed

3 files changed

+14
-3
lines changed

tokio-postgres/CHANGELOG.md

+12-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,16 @@
22

33
## [Unreleased]
44

5+
## [v0.4.0-rc.3] - 2019-06-29
6+
7+
### Fixed
8+
9+
* Significantly improved the performance of `query` and `copy_in`.
10+
11+
### Changed
12+
13+
* The items of the stream passed to `copy_in` must be `'static`.
14+
515
## [v0.4.0-rc.2] - 2019-03-05
616

717
### Fixed
@@ -43,7 +53,8 @@
4353

4454
Look at the [release tags] for information about older releases.
4555

46-
[Unreleased]: https://github.com/sfackler/rust-postgres/compare/tokio-postgres-v0.4.0-rc.2...master
56+
[Unreleased]: https://github.com/sfackler/rust-postgres/compare/tokio-postgres-v0.4.0-rc.3...master
57+
[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
4758
[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
4859
[v0.4.0-rc.1]: https://github.com/sfackler/rust-postgres/compare/tokio-postgres-v0.3.0...tokio-postgres-v0.4.0-rc.1
4960
[release tags]: https://github.com/sfackler/rust-postgres/releases

tokio-postgres/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tokio-postgres"
3-
version = "0.4.0-rc.2"
3+
version = "0.4.0-rc.3"
44
authors = ["Steven Fackler <[email protected]>"]
55
edition = "2018"
66
license = "MIT/Apache-2.0"

tokio-postgres/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@
108108
//! as an argument. The `NoTls` type in this crate can be used when TLS is not required. Otherwise, the
109109
//! `postgres-openssl` and `postgres-native-tls` crates provide implementations backed by the `openssl` and `native-tls`
110110
//! crates, respectively.
111-
#![doc(html_root_url = "https://docs.rs/tokio-postgres/0.4.0-rc.1")]
111+
#![doc(html_root_url = "https://docs.rs/tokio-postgres/0.4.0-rc.3")]
112112
#![warn(rust_2018_idioms, clippy::all, missing_docs)]
113113

114114
use bytes::IntoBuf;

0 commit comments

Comments
 (0)