Skip to content

Commit cc9b823

Browse files
committed
Release postgres v0.17.1
1 parent d88bccc commit cc9b823

File tree

3 files changed

+12
-3
lines changed

3 files changed

+12
-3
lines changed

postgres/CHANGELOG.md

+9
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# Change Log
22

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+
312
## v0.17.0 - 2019-12-23
413

514
### Changed

postgres/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "postgres"
3-
version = "0.17.0"
3+
version = "0.17.1"
44
authors = ["Steven Fackler <[email protected]>"]
55
edition = "2018"
66
license = "MIT/Apache-2.0"
@@ -32,7 +32,7 @@ with-uuid-0_8 = ["tokio-postgres/with-uuid-0_8"]
3232
bytes = "0.5"
3333
fallible-iterator = "0.2"
3434
futures = "0.3"
35-
tokio-postgres = { version = "0.5.0", path = "../tokio-postgres" }
35+
tokio-postgres = { version = "0.5.2", path = "../tokio-postgres" }
3636

3737
tokio = { version = "0.2", features = ["rt-core"] }
3838
log = "0.4"

tokio-postgres/CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
* Added `Client::build_transaction` to allow configuration of various transaction options.
1717
* 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.
1919
* Added a `GenericClient` trait implemented for `Client` and `Transaction` and covering shared functionality.
2020

2121
## v0.5.1 - 2019-12-25

0 commit comments

Comments
 (0)