Release tokio-postgres v0.7.2

This commit is contained in:
Steven Fackler 2021-09-29 19:34:32 -04:00
parent 349c38b1fe
commit 8542d078bf
2 changed files with 15 additions and 2 deletions

View File

@ -1,5 +1,18 @@
# Change Log
## v0.7.2 - 2021-09-29
### Fixed
* Fixed a deadlock when pipelined requests concurrently prepare cached typeinfo queries.
### Added
* Added `SimpleQueryRow::columns`.
* Added support for `eui48` 1.0 via the `with-eui48-1` feature.
* Added `FromSql` and `ToSql` implementations for arrays via the `array-impls` feature.
* Added support for `time` 0.3 via the `with-time-0_3` feature.
## v0.7.2 - 2021-04-25
### Fixed

View File

@ -1,6 +1,6 @@
[package]
name = "tokio-postgres"
version = "0.7.2"
version = "0.7.3"
authors = ["Steven Fackler <sfackler@gmail.com>"]
edition = "2018"
license = "MIT/Apache-2.0"
@ -51,7 +51,7 @@ percent-encoding = "2.0"
pin-project-lite = "0.2"
phf = "0.10"
postgres-protocol = { version = "0.6.1", path = "../postgres-protocol" }
postgres-types = { version = "0.2.1", path = "../postgres-types" }
postgres-types = { version = "0.2.2", path = "../postgres-types" }
socket2 = "0.4"
tokio = { version = "1.0", features = ["io-util"] }
tokio-util = { version = "0.6", features = ["codec"] }