Release tokio-postgres v0.7.1

This commit is contained in:
Steven Fackler 2021-04-03 17:12:50 -04:00
parent 32524569c2
commit 57164c7e59
2 changed files with 6 additions and 4 deletions

View File

@ -1,10 +1,12 @@
# Change Log
## Unreleased
## v0.7.1 - 2020-04-03
### Added
* Added support for `geo-types` 0.7 via `with-geo-types-0_7` feature.
* Added `Client::clear_type_cache`.
* Added `Error::as_db_error` and `Error::is_closed`.
## v0.7.0 - 2020-12-25

View File

@ -1,6 +1,6 @@
[package]
name = "tokio-postgres"
version = "0.7.0"
version = "0.7.1"
authors = ["Steven Fackler <sfackler@gmail.com>"]
edition = "2018"
license = "MIT/Apache-2.0"
@ -47,8 +47,8 @@ parking_lot = "0.11"
percent-encoding = "2.0"
pin-project-lite = "0.2"
phf = "0.8"
postgres-protocol = { version = "0.6.0", path = "../postgres-protocol" }
postgres-types = { version = "0.2.0", path = "../postgres-types" }
postgres-protocol = { version = "0.6.1", path = "../postgres-protocol" }
postgres-types = { version = "0.2.1", path = "../postgres-types" }
socket2 = "0.4"
tokio = { version = "1.0", features = ["io-util"] }
tokio-util = { version = "0.6", features = ["codec"] }