Release postgres v0.17.1
This commit is contained in:
parent
d88bccc27c
commit
cc9b8232a8
@ -1,5 +1,14 @@
|
|||||||
# Change Log
|
# Change Log
|
||||||
|
|
||||||
|
## v0.17.1 - 2020-01-31
|
||||||
|
|
||||||
|
### Added
|
||||||
|
|
||||||
|
* Added `Client::build_transaction` to allow configuration of various transaction options.
|
||||||
|
* Added `Client::cancel_token`, which returns a separate owned object that can be used to cancel queries.
|
||||||
|
* Added accessors for `Config` fields.
|
||||||
|
* Added a `GenericClient` trait implemented for `Client` and `Transaction` and covering shared functionality.
|
||||||
|
|
||||||
## v0.17.0 - 2019-12-23
|
## v0.17.0 - 2019-12-23
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "postgres"
|
name = "postgres"
|
||||||
version = "0.17.0"
|
version = "0.17.1"
|
||||||
authors = ["Steven Fackler <sfackler@gmail.com>"]
|
authors = ["Steven Fackler <sfackler@gmail.com>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
license = "MIT/Apache-2.0"
|
license = "MIT/Apache-2.0"
|
||||||
@ -32,7 +32,7 @@ with-uuid-0_8 = ["tokio-postgres/with-uuid-0_8"]
|
|||||||
bytes = "0.5"
|
bytes = "0.5"
|
||||||
fallible-iterator = "0.2"
|
fallible-iterator = "0.2"
|
||||||
futures = "0.3"
|
futures = "0.3"
|
||||||
tokio-postgres = { version = "0.5.0", path = "../tokio-postgres" }
|
tokio-postgres = { version = "0.5.2", path = "../tokio-postgres" }
|
||||||
|
|
||||||
tokio = { version = "0.2", features = ["rt-core"] }
|
tokio = { version = "0.2", features = ["rt-core"] }
|
||||||
log = "0.4"
|
log = "0.4"
|
||||||
|
@ -15,7 +15,7 @@
|
|||||||
|
|
||||||
* Added `Client::build_transaction` to allow configuration of various transaction options.
|
* Added `Client::build_transaction` to allow configuration of various transaction options.
|
||||||
* Added `Client::cancel_token`, which returns a separate owned object that can be used to cancel queries.
|
* Added `Client::cancel_token`, which returns a separate owned object that can be used to cancel queries.
|
||||||
* Added accessors for `Client` fields.
|
* Added accessors for `Config` fields.
|
||||||
* Added a `GenericClient` trait implemented for `Client` and `Transaction` and covering shared functionality.
|
* Added a `GenericClient` trait implemented for `Client` and `Transaction` and covering shared functionality.
|
||||||
|
|
||||||
## v0.5.1 - 2019-12-25
|
## v0.5.1 - 2019-12-25
|
||||||
|
Loading…
Reference in New Issue
Block a user