Skip to content

Commit

Permalink
Prepare for release
Browse files Browse the repository at this point in the history
  • Loading branch information
Keats committed Jan 20, 2025
1 parent 06e69eb commit 32e49fb
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 5 deletions.
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
## Changelog

## Unreleased
## 0.20.0 (2025/01/20)

- Implement `AsRegex` for `std::sync::LazyLock<Regex>`
- Bug fix for nested issue with custom only running nested if outer passes
- Support `Deserialize` for `ValidationErrors`

## 0.19.0 (2024/11/03)

Expand Down
4 changes: 2 additions & 2 deletions validator/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "validator"
version = "0.19.0"
version = "0.20.0"
authors = ["Vincent Prouillet <hello@vincentprouillet.com"]
license = "MIT"
description = "Common validation functions (email, url, length, ...) and trait - to be used with `validator_derive`"
Expand All @@ -19,7 +19,7 @@ idna = "1"
serde = "1"
serde_derive = "1"
serde_json = "1"
validator_derive = { version = "0.19", path = "../validator_derive", optional = true }
validator_derive = { version = "0.20", path = "../validator_derive", optional = true }
card-validate = { version = "2.3", optional = true }
unic-ucd-common = { version = "0.9", optional = true }
indexmap = { version = "2.0.0", features = ["serde"], optional = true }
Expand Down
2 changes: 1 addition & 1 deletion validator_derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "validator_derive"
version = "0.19.0"
version = "0.20.0"
authors = ["Vincent Prouillet <hello@vincentprouillet.com"]
license = "MIT"
description = "Macros 1.1 implementation of #[derive(Validate)]"
Expand Down
2 changes: 1 addition & 1 deletion validator_derive_tests/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ test_ui = []
nightly = []

[dev-dependencies]
validator = { version = "0.19", path = "../validator", features = [
validator = { version = "0.20", path = "../validator", features = [
"card",
"unic",
"derive",
Expand Down

0 comments on commit 32e49fb

Please sign in to comment.