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"