From 245ccb7babd4688a39334fd0885499b57e65f5fa Mon Sep 17 00:00:00 2001 From: Steven Fackler Date: Mon, 23 Dec 2019 15:31:41 -0800 Subject: [PATCH] Release postgres-types v0.1.0 --- postgres-types/CHANGELOG.md | 14 ++++++++++++++ postgres-types/Cargo.toml | 2 +- tokio-postgres/Cargo.toml | 2 +- 3 files changed, 16 insertions(+), 2 deletions(-) diff --git a/postgres-types/CHANGELOG.md b/postgres-types/CHANGELOG.md index 071a2e65e..1569598eb 100644 --- a/postgres-types/CHANGELOG.md +++ b/postgres-types/CHANGELOG.md @@ -1,5 +1,19 @@ # Change Log +## v0.1.0 - 2019-12-23 + +### Changed + +* `Kind` is now a true non-exhaustive enum. + +### Removed + +* Removed `uuid` 0.7 support. + +### Added + +* Added a `Hash` implementation for `Type`. + ## v0.1.0-alpha.2 - 2019-11-27 ### Changed diff --git a/postgres-types/Cargo.toml b/postgres-types/Cargo.toml index b3221fbfb..4add13815 100644 --- a/postgres-types/Cargo.toml +++ b/postgres-types/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "postgres-types" -version = "0.1.0-alpha.2" +version = "0.1.0" authors = ["Steven Fackler "] edition = "2018" license = "MIT/Apache-2.0" diff --git a/tokio-postgres/Cargo.toml b/tokio-postgres/Cargo.toml index 98e054f54..a36ab9db0 100644 --- a/tokio-postgres/Cargo.toml +++ b/tokio-postgres/Cargo.toml @@ -45,7 +45,7 @@ percent-encoding = "2.0" pin-project-lite = "0.1" phf = "0.8" postgres-protocol = { version = "0.5.0", path = "../postgres-protocol" } -postgres-types = { version = "=0.1.0-alpha.2", path = "../postgres-types" } +postgres-types = { version = "0.1.0", path = "../postgres-types" } tokio = { version = "0.2", features = ["io-util"] } tokio-util = { version = "0.2", features = ["codec"] }