Skip to content

Commit

Permalink
Release postgres-types v0.2.3
Browse files Browse the repository at this point in the history
  • Loading branch information
sfackler committed Apr 30, 2022
1 parent 1d8aa0a commit 695067c
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 2 deletions.
10 changes: 10 additions & 0 deletions postgres-types/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# Change Log

## v0.2.3 - 2022-04-30

### Added

* Added `ToSql` and `FromSql` implementations for `Box<str>`.
* Added `BorrowToSql` implementations for `Box<dyn ToSql + Sync>` and `Box<dyn ToSql + Sync + Send>`.
* 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
Expand Down
6 changes: 4 additions & 2 deletions postgres-types/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }
Expand Down

0 comments on commit 695067c

Please sign in to comment.