Skip to content

Commit 65a68df

Browse files
committed
Release postgres v0.19.5
1 parent 7d5962e commit 65a68df

File tree

2 files changed

+14
-2
lines changed

2 files changed

+14
-2
lines changed

postgres/CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
# Change Log
22

3+
## v0.19.5 - 2023-03-27
4+
5+
## Added
6+
7+
* Added `keepalives_interval` and `keepalives_retries` config options.
8+
* Added the `tcp_user_timeout` config option.
9+
* Added `RowIter::rows_affected`.
10+
11+
## Changed
12+
13+
* Passing an incorrect number of parameters to a query method now returns an error instead of panicking.
14+
315
## v0.19.4 - 2022-08-21
416

517
## Added

postgres/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "postgres"
3-
version = "0.19.4"
3+
version = "0.19.5"
44
authors = ["Steven Fackler <[email protected]>"]
55
edition = "2018"
66
license = "MIT/Apache-2.0"
@@ -39,7 +39,7 @@ with-time-0_3 = ["tokio-postgres/with-time-0_3"]
3939
bytes = "1.0"
4040
fallible-iterator = "0.2"
4141
futures-util = { version = "0.3.14", features = ["sink"] }
42-
tokio-postgres = { version = "0.7.7", path = "../tokio-postgres" }
42+
tokio-postgres = { version = "0.7.8", path = "../tokio-postgres" }
4343

4444
tokio = { version = "1.0", features = ["rt", "time"] }
4545
log = "0.4"

0 commit comments

Comments
 (0)