Skip to content

Commit

Permalink
Release postgres v0.19.6
Browse files Browse the repository at this point in the history
  • Loading branch information
sfackler committed Aug 20, 2023
1 parent f45527f commit 75cc986
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 8 deletions.
14 changes: 11 additions & 3 deletions postgres/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,20 +1,28 @@
# Change Log

## v0.19.6 - 2023-08-19

### Added

* Added support for the `hostaddr` config option to bypass DNS lookups.
* Added support for the `load_balance_hosts` config option to randomize connection ordering.
* The `user` config option now defaults to the executing process's user.

## v0.19.5 - 2023-03-27

## Added
### Added

* Added `keepalives_interval` and `keepalives_retries` config options.
* Added the `tcp_user_timeout` config option.
* Added `RowIter::rows_affected`.

## Changed
### 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
### Added

* Added `ToSql` and `FromSql` implementations for `[u8; N]` via the `array-impls` feature.
* Added support for `smol_str` 0.1 via the `with-smol_str-01` feature.
Expand Down
8 changes: 3 additions & 5 deletions postgres/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "postgres"
version = "0.19.5"
version = "0.19.6"
authors = ["Steven Fackler <[email protected]>"]
edition = "2018"
license = "MIT/Apache-2.0"
Expand Down Expand Up @@ -39,11 +39,9 @@ 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.8", path = "../tokio-postgres" }

tokio = { version = "1.0", features = ["rt", "time"] }
log = "0.4"
tokio-postgres = { version = "0.7.9", path = "../tokio-postgres" }
tokio = { version = "1.0", features = ["rt", "time"] }

[dev-dependencies]
criterion = "0.5"
tokio = { version = "1.0", features = ["rt-multi-thread"] }

0 comments on commit 75cc986

Please sign in to comment.