File tree 3 files changed +12
-3
lines changed
3 files changed +12
-3
lines changed Original file line number Diff line number Diff line change 1
1
# Change Log
2
2
3
+ ## v0.17.1 - 2020-01-31
4
+
5
+ ### Added
6
+
7
+ * Added ` Client::build_transaction ` to allow configuration of various transaction options.
8
+ * Added ` Client::cancel_token ` , which returns a separate owned object that can be used to cancel queries.
9
+ * Added accessors for ` Config ` fields.
10
+ * Added a ` GenericClient ` trait implemented for ` Client ` and ` Transaction ` and covering shared functionality.
11
+
3
12
## v0.17.0 - 2019-12-23
4
13
5
14
### Changed
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " postgres"
3
- version = " 0.17.0 "
3
+ version = " 0.17.1 "
4
4
authors = [
" Steven Fackler <[email protected] >" ]
5
5
edition = " 2018"
6
6
license = " MIT/Apache-2.0"
@@ -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 " , path = " ../tokio-postgres" }
35
+ tokio-postgres = { version = " 0.5.2 " , 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 15
15
16
16
* Added ` Client::build_transaction ` to allow configuration of various transaction options.
17
17
* Added ` Client::cancel_token ` , which returns a separate owned object that can be used to cancel queries.
18
- * Added accessors for ` Client ` fields.
18
+ * Added accessors for ` Config ` fields.
19
19
* Added a ` GenericClient ` trait implemented for ` Client ` and ` Transaction ` and covering shared functionality.
20
20
21
21
## v0.5.1 - 2019-12-25
You can’t perform that action at this time.
0 commit comments