diff --git a/tokio-postgres/CHANGELOG.md b/tokio-postgres/CHANGELOG.md index 34b4fc1d..eca196f0 100644 --- a/tokio-postgres/CHANGELOG.md +++ b/tokio-postgres/CHANGELOG.md @@ -1,5 +1,11 @@ # Change Log +## v0.7.5 - 2021-10-29 + +### Fixed + +* Fixed a bug where the client could enter into a transaction if the `Client::transaction` future was dropped before completion. + ## v0.7.4 - 2021-10-19 ### Fixed diff --git a/tokio-postgres/Cargo.toml b/tokio-postgres/Cargo.toml index 17286dc2..5974fe64 100644 --- a/tokio-postgres/Cargo.toml +++ b/tokio-postgres/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tokio-postgres" -version = "0.7.4" +version = "0.7.5" authors = ["Steven Fackler "] edition = "2018" license = "MIT/Apache-2.0"