Skip to content

Commit 32e49fb

Browse files
committed
Prepare for release
1 parent 06e69eb commit 32e49fb

File tree

4 files changed

+7
-5
lines changed

4 files changed

+7
-5
lines changed

CHANGELOG.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
## Changelog
22

3-
## Unreleased
3+
## 0.20.0 (2025/01/20)
4+
45
- Implement `AsRegex` for `std::sync::LazyLock<Regex>`
56
- Bug fix for nested issue with custom only running nested if outer passes
7+
- Support `Deserialize` for `ValidationErrors`
68

79
## 0.19.0 (2024/11/03)
810

validator/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "validator"
3-
version = "0.19.0"
3+
version = "0.20.0"
44
authors = ["Vincent Prouillet <[email protected]"]
55
license = "MIT"
66
description = "Common validation functions (email, url, length, ...) and trait - to be used with `validator_derive`"
@@ -19,7 +19,7 @@ idna = "1"
1919
serde = "1"
2020
serde_derive = "1"
2121
serde_json = "1"
22-
validator_derive = { version = "0.19", path = "../validator_derive", optional = true }
22+
validator_derive = { version = "0.20", path = "../validator_derive", optional = true }
2323
card-validate = { version = "2.3", optional = true }
2424
unic-ucd-common = { version = "0.9", optional = true }
2525
indexmap = { version = "2.0.0", features = ["serde"], optional = true }

validator_derive/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "validator_derive"
3-
version = "0.19.0"
3+
version = "0.20.0"
44
authors = ["Vincent Prouillet <[email protected]"]
55
license = "MIT"
66
description = "Macros 1.1 implementation of #[derive(Validate)]"

validator_derive_tests/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ test_ui = []
1111
nightly = []
1212

1313
[dev-dependencies]
14-
validator = { version = "0.19", path = "../validator", features = [
14+
validator = { version = "0.20", path = "../validator", features = [
1515
"card",
1616
"unic",
1717
"derive",

0 commit comments

Comments
 (0)