diff --git a/postgres-types/CHANGELOG.md b/postgres-types/CHANGELOG.md index f8b2835e..d2284dbd 100644 --- a/postgres-types/CHANGELOG.md +++ b/postgres-types/CHANGELOG.md @@ -1,5 +1,15 @@ # Change Log +## v0.2.3 - 2022-04-30 + +### Added + +* Added `ToSql` and `FromSql` implementations for `Box`. +* Added `BorrowToSql` implementations for `Box` and `Box`. +* Added support for `cidr` 0.2 via the `with-cidr-02` feature. +* Added conversions between the `LTREE`, `LQUERY` and `LTXTQUERY` types and Rust strings. +* Added support for `uuid` 1.0 via the `with-uuid-1` feature. + ## v0.2.2 - 2021-09-29 ### Added diff --git a/postgres-types/Cargo.toml b/postgres-types/Cargo.toml index e0ccb949..d8f14702 100644 --- a/postgres-types/Cargo.toml +++ b/postgres-types/Cargo.toml @@ -30,11 +30,13 @@ with-time-0_3 = ["time-03"] bytes = "1.0" fallible-iterator = "0.2" postgres-protocol = { version = "0.6.4", path = "../postgres-protocol" } -postgres-derive = { version = "0.4.0", optional = true, path = "../postgres-derive" } +postgres-derive = { version = "0.4.2", optional = true, path = "../postgres-derive" } array-init = { version = "2", optional = true } bit-vec-06 = { version = "0.6", package = "bit-vec", optional = true } -chrono-04 = { version = "0.4.16", package = "chrono", default-features = false, features = ["clock"], optional = true } +chrono-04 = { version = "0.4.16", package = "chrono", default-features = false, features = [ + "clock", +], optional = true } cidr-02 = { version = "0.2", package = "cidr", optional = true } eui48-04 = { version = "0.4", package = "eui48", optional = true } eui48-1 = { version = "1.0", package = "eui48", optional = true }