Skip to content

Commit 695067c

Browse files
committed
Release postgres-types v0.2.3
1 parent 1d8aa0a commit 695067c

File tree

2 files changed

+14
-2
lines changed

2 files changed

+14
-2
lines changed

postgres-types/CHANGELOG.md

+10
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# Change Log
22

3+
## v0.2.3 - 2022-04-30
4+
5+
### Added
6+
7+
* Added `ToSql` and `FromSql` implementations for `Box<str>`.
8+
* Added `BorrowToSql` implementations for `Box<dyn ToSql + Sync>` and `Box<dyn ToSql + Sync + Send>`.
9+
* Added support for `cidr` 0.2 via the `with-cidr-02` feature.
10+
* Added conversions between the `LTREE`, `LQUERY` and `LTXTQUERY` types and Rust strings.
11+
* Added support for `uuid` 1.0 via the `with-uuid-1` feature.
12+
313
## v0.2.2 - 2021-09-29
414

515
### Added

postgres-types/Cargo.toml

+4-2
Original file line numberDiff line numberDiff line change
@@ -30,11 +30,13 @@ with-time-0_3 = ["time-03"]
3030
bytes = "1.0"
3131
fallible-iterator = "0.2"
3232
postgres-protocol = { version = "0.6.4", path = "../postgres-protocol" }
33-
postgres-derive = { version = "0.4.0", optional = true, path = "../postgres-derive" }
33+
postgres-derive = { version = "0.4.2", optional = true, path = "../postgres-derive" }
3434

3535
array-init = { version = "2", optional = true }
3636
bit-vec-06 = { version = "0.6", package = "bit-vec", optional = true }
37-
chrono-04 = { version = "0.4.16", package = "chrono", default-features = false, features = ["clock"], optional = true }
37+
chrono-04 = { version = "0.4.16", package = "chrono", default-features = false, features = [
38+
"clock",
39+
], optional = true }
3840
cidr-02 = { version = "0.2", package = "cidr", optional = true }
3941
eui48-04 = { version = "0.4", package = "eui48", optional = true }
4042
eui48-1 = { version = "1.0", package = "eui48", optional = true }

0 commit comments

Comments
 (0)