From 7fd04e7a21cc5ae9832f24a4b28292b40fbcaa8f Mon Sep 17 00:00:00 2001 From: Steven Fackler Date: Sat, 17 Oct 2020 15:00:47 -0400 Subject: [PATCH] Release postgres-types v0.1.3 --- postgres-types/CHANGELOG.md | 10 ++++++++++ postgres-types/Cargo.toml | 2 +- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/postgres-types/CHANGELOG.md b/postgres-types/CHANGELOG.md index ddbdc6844..1c267923c 100644 --- a/postgres-types/CHANGELOG.md +++ b/postgres-types/CHANGELOG.md @@ -1,5 +1,15 @@ # Change Log +## v0.1.3 - 2020-10-17 + +### Added + +* Implemented `Clone`, `PartialEq`, and `Eq` for `Json`. + +### Fixed + +* Checked for overflow in `NaiveDate` and `NaiveDateTime` conversions. + ## v0.1.2 - 2020-07-03 ### Added diff --git a/postgres-types/Cargo.toml b/postgres-types/Cargo.toml index b50653168..c5e706f6e 100644 --- a/postgres-types/Cargo.toml +++ b/postgres-types/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "postgres-types" -version = "0.1.2" +version = "0.1.3" authors = ["Steven Fackler "] edition = "2018" license = "MIT/Apache-2.0"