File tree Expand file tree Collapse file tree 6 files changed +18
-8
lines changed
tokio-postgres-binary-copy Expand file tree Collapse file tree 6 files changed +18
-8
lines changed Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ futures-preview = "=0.3.0-alpha.19"
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.1 " , path = " ../tokio-postgres" , default-features = false }
24
+ tokio-postgres = { version = " =0.5.0-alpha.2 " , 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.1 " , path = " ../tokio-postgres" , default-features = false }
24
+ tokio-postgres = { version = " =0.5.0-alpha.2 " , 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 @@ -33,7 +33,7 @@ bytes = "0.5"
33
33
fallible-iterator = " 0.2"
34
34
futures = " 0.3"
35
35
pin-utils = " =0.1.0-alpha.4"
36
- tokio-postgres = { version = " =0.5.0-alpha.1 " , path = " ../tokio-postgres" , default-features = false }
36
+ tokio-postgres = { version = " =0.5.0-alpha.2 " , path = " ../tokio-postgres" , default-features = false }
37
37
tokio-executor = " =0.2.0-alpha.6"
38
38
39
39
tokio = { version = " 0.2" , optional = true , features = [" rt-threaded" ] }
Original file line number Diff line number Diff line change @@ -10,8 +10,8 @@ bytes = "0.5"
10
10
futures = " 0.3"
11
11
parking_lot = " 0.10"
12
12
pin-project-lite = " 0.1"
13
- tokio-postgres = { version = " =0.5.0-alpha.1 " , default-features = false , path = " ../tokio-postgres" }
13
+ tokio-postgres = { version = " =0.5.0-alpha.2 " , default-features = false , path = " ../tokio-postgres" }
14
14
15
15
[dev-dependencies ]
16
16
tokio = { version = " 0.2" , features = [" full" ] }
17
- tokio-postgres = { version = " =0.5.0-alpha.1 " , path = " ../tokio-postgres" }
17
+ tokio-postgres = { version = " =0.5.0-alpha.2 " , path = " ../tokio-postgres" }
Original file line number Diff line number Diff line change 1
1
# Change Log
2
2
3
- ## Unreleased
3
+ ## v0.5.0-alpha.2 - 2019-11-27
4
+
5
+ ### Changed
6
+
7
+ * Upgraded ` bytes ` to 0.5.
8
+ * Upgraded ` tokio ` to 0.2.
9
+ * The TLS interface uses a trait to obtain channel binding information rather than returning it after the handshake.
10
+ * Changed the value of the ` timezone ` property from ` GMT ` to ` UTC ` .
11
+ * Returned ` Stream ` implementations are now ` !Unpin ` .
4
12
5
13
### Added
6
- * Added support for converting to and from ` uuid ` crate v0.8
14
+
15
+ * Added support for ` uuid ` 0.8.
16
+ * Added the column to ` Row::try_get ` errors.
7
17
8
18
## v0.5.0-alpha.1 - 2019-10-14
9
19
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " tokio-postgres"
3
- version = " 0.5.0-alpha.1 "
3
+ version = " 0.5.0-alpha.2 "
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