Release tokio-postgres v0.7.8

This commit is contained in:
Steven Fackler 2023-03-27 19:14:49 -04:00
parent 54390eb3fe
commit 117e387a3e
No known key found for this signature in database
GPG Key ID: 408917B7276A5226
2 changed files with 17 additions and 1 deletions

View File

@ -1,5 +1,21 @@
# Change Log
## v0.7.8
## Added
* Added `keepalives_interval` and `keepalives_retries` config options.
* Added new `SqlState` variants.
* Added more `Debug` impls.
* Added `GenericClient::batch_execute`.
* Added `RowStream::rows_affected`.
* Added the `tcp_user_timeout` config option.
## Changed
* Passing an incorrect number of parameters to a query method now returns an error instead of panicking.
* Upgraded `socket2`.
## v0.7.7 - 2022-08-21
## Added

View File

@ -1,6 +1,6 @@
[package]
name = "tokio-postgres"
version = "0.7.7"
version = "0.7.8"
authors = ["Steven Fackler <sfackler@gmail.com>"]
edition = "2018"
license = "MIT/Apache-2.0"