File tree Expand file tree Collapse file tree 5 files changed +24
-4
lines changed Expand file tree Collapse file tree 5 files changed +24
-4
lines changed Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ futures = "0.3"
21
21
native-tls = " 0.2"
22
22
tokio = " 0.2"
23
23
tokio-tls = " 0.3"
24
- tokio-postgres = { version = " = 0.5.0-alpha.2 " , path = " ../tokio-postgres" , default-features = false }
24
+ tokio-postgres = { version = " 0.5.0" , path = " ../tokio-postgres" , default-features = false }
25
25
26
26
[dev-dependencies ]
27
27
tokio = { version = " 0.2" , features = [" full" ] }
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ futures = "0.3"
21
21
openssl = " 0.10"
22
22
tokio = " 0.2"
23
23
tokio-openssl = " 0.4"
24
- tokio-postgres = { version = " = 0.5.0-alpha.2 " , path = " ../tokio-postgres" , default-features = false }
24
+ tokio-postgres = { version = " 0.5.0" , path = " ../tokio-postgres" , default-features = false }
25
25
26
26
[dev-dependencies ]
27
27
tokio = { version = " 0.2" , features = [" full" ] }
Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ with-uuid-0_8 = ["tokio-postgres/with-uuid-0_8"]
32
32
bytes = " 0.5"
33
33
fallible-iterator = " 0.2"
34
34
futures = " 0.3"
35
- tokio-postgres = { version = " = 0.5.0-alpha.2 " , path = " ../tokio-postgres" }
35
+ tokio-postgres = { version = " 0.5.0" , path = " ../tokio-postgres" }
36
36
37
37
tokio = { version = " 0.2" , features = [" rt-core" ] }
38
38
log = " 0.4"
Original file line number Diff line number Diff line change 1
1
# Change Log
2
2
3
+ ## v0.5.0 - 2019-12-23
4
+
5
+ ### Changed
6
+
7
+ * ` Client::copy_in ` now returns a ` Sink ` rather than taking in a ` Stream ` .
8
+ * ` CopyStream ` has been renamed to ` CopyOutStream ` .
9
+ * ` Client::copy_in ` and ` Client::copy_out ` no longer take query parameters as PostgreSQL doesn't support parameters in
10
+ COPY queries.
11
+ * ` TargetSessionAttrs ` , ` SslMode ` , and ` ChannelBinding ` are now true non-exhaustive enums.
12
+
13
+ ### Added
14
+
15
+ * Added ` Client::query_opt ` for queries expected to return zero or one rows.
16
+ * Added binary copy format support to the ` binary_copy ` module.
17
+ * Added back query logging.
18
+
19
+ ### Removed
20
+
21
+ * Removed ` uuid ` 0.7 support.
22
+
3
23
## v0.5.0-alpha.2 - 2019-11-27
4
24
5
25
### Changed
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " tokio-postgres"
3
- version = " 0.5.0-alpha.2 "
3
+ version = " 0.5.0"
4
4
authors = [" Steven Fackler <sfackler@gmail.com>" ]
5
5
edition = " 2018"
6
6
license = " MIT/Apache-2.0"
You can’t perform that action at this time.
0 commit comments