Release tokio-postgres v0.5.2

This commit is contained in:
Steven Fackler 2020-01-31 18:00:05 -08:00
parent 2ce4f08f46
commit d88bccc27c
2 changed files with 19 additions and 1 deletions

View File

@ -1,5 +1,23 @@
# Change Log # Change Log
## v0.5.2 - 2020-01-31
### Fixed
* Notice messages sent during the initial connection process are now collected and returned first from
`Connection::poll_message`.
### Deprecated
* Deprecated `Client::cancel_query` and `Client::cancel_query_raw` in favor of `Client::cancel_token`.
### 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 `Client` fields.
* 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
### Fixed ### Fixed

View File

@ -1,6 +1,6 @@
[package] [package]
name = "tokio-postgres" name = "tokio-postgres"
version = "0.5.1" version = "0.5.2"
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"