Skip to content

Commit c5ff8cf

Browse files
committed
Release postgres v0.19.7
1 parent c50fcbd commit c5ff8cf

File tree

3 files changed

+11
-5
lines changed

3 files changed

+11
-5
lines changed

postgres/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Change Log
22

3+
## v0.19.7 - 2023-08-25
4+
5+
## Fixed
6+
7+
* Defered default username lookup to avoid regressing `Config` behavior.
8+
39
## v0.19.6 - 2023-08-19
410

511
### Added

postgres/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "postgres"
3-
version = "0.19.6"
3+
version = "0.19.7"
44
authors = ["Steven Fackler <[email protected]>"]
55
edition = "2018"
66
license = "MIT/Apache-2.0"
@@ -40,7 +40,7 @@ bytes = "1.0"
4040
fallible-iterator = "0.2"
4141
futures-util = { version = "0.3.14", features = ["sink"] }
4242
log = "0.4"
43-
tokio-postgres = { version = "0.7.9", path = "../tokio-postgres" }
43+
tokio-postgres = { version = "0.7.10", path = "../tokio-postgres" }
4444
tokio = { version = "1.0", features = ["rt", "time"] }
4545

4646
[dev-dependencies]

tokio-postgres/CHANGELOG.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
# Change Log
22

3-
## v0.7.10
3+
## v0.7.10 - 2023-08-25
44

55
## Fixed
66

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

9-
## v0.7.9
9+
## v0.7.9 - 2023-08-19
1010

1111
## Fixed
1212

@@ -19,7 +19,7 @@
1919
* Added support for the `load_balance_hosts` config option to randomize connection ordering.
2020
* The `user` config option now defaults to the executing process's user.
2121

22-
## v0.7.8
22+
## v0.7.8 - 2023-05-27
2323

2424
## Added
2525

0 commit comments

Comments
 (0)