File tree 3 files changed +14
-3
lines changed
3 files changed +14
-3
lines changed Original file line number Diff line number Diff line change 2
2
3
3
## [ Unreleased]
4
4
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
+
5
15
## [ v0.4.0-rc.2] - 2019-03-05
6
16
7
17
### Fixed
43
53
44
54
Look at the [ release tags] for information about older releases.
45
55
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
47
58
[ 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
48
59
[ v0.4.0-rc.1 ] : https://github.com/sfackler/rust-postgres/compare/tokio-postgres-v0.3.0...tokio-postgres-v0.4.0-rc.1
49
60
[ release tags ] : https://github.com/sfackler/rust-postgres/releases
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " tokio-postgres"
3
- version = " 0.4.0-rc.2 "
3
+ version = " 0.4.0-rc.3 "
4
4
authors = [
" Steven Fackler <[email protected] >" ]
5
5
edition = " 2018"
6
6
license = " MIT/Apache-2.0"
Original file line number Diff line number Diff line change 108
108
//! as an argument. The `NoTls` type in this crate can be used when TLS is not required. Otherwise, the
109
109
//! `postgres-openssl` and `postgres-native-tls` crates provide implementations backed by the `openssl` and `native-tls`
110
110
//! 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 " ) ]
112
112
#![ warn( rust_2018_idioms, clippy:: all, missing_docs) ]
113
113
114
114
use bytes:: IntoBuf ;
You can’t perform that action at this time.
0 commit comments