Skip to content

Commit 43e1569

Browse files
committedAug 20, 2023
Release postgres-derive v0.4.5
1 parent 496f46c commit 43e1569

File tree

3 files changed

+9
-2
lines changed

3 files changed

+9
-2
lines changed
 

‎postgres-derive/CHANGELOG.md

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

3+
## v0.4.5 - 2023-08-19
4+
5+
### Added
6+
7+
* Added a `rename_all` option for enum and struct derives.
8+
* Added an `allow_mismatch` option to disable strict enum variant checks against the Postgres type.
9+
310
## v0.4.4 - 2023-03-27
411

512
### Changed

‎postgres-derive/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "postgres-derive"
3-
version = "0.4.4"
3+
version = "0.4.5"
44
authors = ["Steven Fackler <sfackler@palantir.com>"]
55
license = "MIT/Apache-2.0"
66
edition = "2018"

‎postgres-types/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ with-time-0_3 = ["time-03"]
3131
bytes = "1.0"
3232
fallible-iterator = "0.2"
3333
postgres-protocol = { version = "0.6.5", path = "../postgres-protocol" }
34-
postgres-derive = { version = "0.4.2", optional = true, path = "../postgres-derive" }
34+
postgres-derive = { version = "0.4.5", optional = true, path = "../postgres-derive" }
3535

3636
array-init = { version = "2", optional = true }
3737
bit-vec-06 = { version = "0.6", package = "bit-vec", optional = true }

0 commit comments

Comments
 (0)