Release postgres v0.18.0

This commit is contained in:
Steven Fackler 2020-10-17 15:16:56 -04:00
parent 12e2f03b53
commit cc77ad18d5
4 changed files with 17 additions and 3 deletions

View File

@ -24,4 +24,4 @@ tokio-postgres = { version = "0.6.0", path = "../tokio-postgres", default-featur
[dev-dependencies]
tokio = { version = "0.3", features = ["full"] }
postgres = { version = "0.17.0", path = "../postgres" }
postgres = { version = "0.18.0", path = "../postgres" }

View File

@ -24,4 +24,4 @@ tokio-postgres = { version = "0.6.0", path = "../tokio-postgres", default-featur
[dev-dependencies]
tokio = { version = "0.3", features = ["full"] }
postgres = { version = "0.17.0", path = "../postgres" }
postgres = { version = "0.18.0", path = "../postgres" }

View File

@ -1,5 +1,19 @@
# Change Log
## v0.18.0 - 2020-10-17
### Changed
* Upgraded to `tokio-postgres` 0.6.
### Added
* Added `Config::notice_callback`, which can be used to provide a custom callback for notices.
### Fixed
* Fixed client shutdown to explicitly terminate the database session.
## v0.17.5 - 2020-07-19
### Fixed

View File

@ -1,6 +1,6 @@
[package]
name = "postgres"
version = "0.17.5"
version = "0.18.0"
authors = ["Steven Fackler <sfackler@gmail.com>"]
edition = "2018"
license = "MIT/Apache-2.0"