Release postgres v0.19.5
This commit is contained in:
parent
7d5962ef3f
commit
65a68dfa46
@ -1,5 +1,17 @@
|
||||
# Change Log
|
||||
|
||||
## v0.19.5 - 2023-03-27
|
||||
|
||||
## Added
|
||||
|
||||
* Added `keepalives_interval` and `keepalives_retries` config options.
|
||||
* Added the `tcp_user_timeout` config option.
|
||||
* Added `RowIter::rows_affected`.
|
||||
|
||||
## Changed
|
||||
|
||||
* Passing an incorrect number of parameters to a query method now returns an error instead of panicking.
|
||||
|
||||
## v0.19.4 - 2022-08-21
|
||||
|
||||
## Added
|
||||
|
@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "postgres"
|
||||
version = "0.19.4"
|
||||
version = "0.19.5"
|
||||
authors = ["Steven Fackler <sfackler@gmail.com>"]
|
||||
edition = "2018"
|
||||
license = "MIT/Apache-2.0"
|
||||
@ -39,7 +39,7 @@ with-time-0_3 = ["tokio-postgres/with-time-0_3"]
|
||||
bytes = "1.0"
|
||||
fallible-iterator = "0.2"
|
||||
futures-util = { version = "0.3.14", features = ["sink"] }
|
||||
tokio-postgres = { version = "0.7.7", path = "../tokio-postgres" }
|
||||
tokio-postgres = { version = "0.7.8", path = "../tokio-postgres" }
|
||||
|
||||
tokio = { version = "1.0", features = ["rt", "time"] }
|
||||
log = "0.4"
|
||||
|
Loading…
Reference in New Issue
Block a user