Skip to content

Commit

Permalink
Release postgres v0.19.7
Browse files Browse the repository at this point in the history
  • Loading branch information
sfackler committed Aug 25, 2023
1 parent c50fcbd commit c5ff8cf
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 5 deletions.
6 changes: 6 additions & 0 deletions postgres/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Change Log

## v0.19.7 - 2023-08-25

## Fixed

* Defered default username lookup to avoid regressing `Config` behavior.

## v0.19.6 - 2023-08-19

### Added
Expand Down
4 changes: 2 additions & 2 deletions postgres/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "postgres"
version = "0.19.6"
version = "0.19.7"
authors = ["Steven Fackler <sfackler@gmail.com>"]
edition = "2018"
license = "MIT/Apache-2.0"
Expand Down Expand Up @@ -40,7 +40,7 @@ bytes = "1.0"
fallible-iterator = "0.2"
futures-util = { version = "0.3.14", features = ["sink"] }
log = "0.4"
tokio-postgres = { version = "0.7.9", path = "../tokio-postgres" }
tokio-postgres = { version = "0.7.10", path = "../tokio-postgres" }
tokio = { version = "1.0", features = ["rt", "time"] }

[dev-dependencies]
Expand Down
6 changes: 3 additions & 3 deletions tokio-postgres/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
# Change Log

## v0.7.10
## v0.7.10 - 2023-08-25

## Fixed

* Defered default username lookup to avoid regressing `Config` behavior.

## v0.7.9
## v0.7.9 - 2023-08-19

## Fixed

Expand All @@ -19,7 +19,7 @@
* 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.7.8
## v0.7.8 - 2023-05-27

## Added

Expand Down

0 comments on commit c5ff8cf

Please sign in to comment.