Skip to content

Commit

Permalink
bump version update
Browse files Browse the repository at this point in the history
  • Loading branch information
pvichivanives committed Oct 29, 2024
1 parent b06dbc6 commit de9b65c
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 8 deletions.
5 changes: 1 addition & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,9 @@
## Changelog

## 0.19 (unreleased)
## 0.19 (2024/11/01)

- Swap to using proc-macro-error-2 instead of proc-macro-error for Syn
- Bumped MSRV to 1.81 because of error naming changes.

## 0.18.2 (unreleased)

- Add more ValidateRegex impl


Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
Macros 1.1 custom derive to simplify struct validation inspired by [marshmallow](http://marshmallow.readthedocs.io/en/latest/) and
[Django validators](https://docs.djangoproject.com/en/1.10/ref/validators/).

The minimum supported version is Rust 1.42.
The minimum supported version is Rust 1.70.

Installation:

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.18.2"
version = "0.19.0"
authors = ["Vincent Prouillet <[email protected]"]
license = "MIT"
description = "Common validation functions (email, url, length, ...) and trait - to be used with `validator_derive`"
Expand All @@ -18,7 +18,7 @@ idna = "1"
serde = "1"
serde_derive = "1"
serde_json = "1"
validator_derive = { version = "0.18", path = "../validator_derive", optional = true }
validator_derive = { version = "0.19", 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.18.2"
version = "0.19.0"
authors = ["Vincent Prouillet <[email protected]"]
license = "MIT"
description = "Macros 1.1 implementation of #[derive(Validate)]"
Expand Down

0 comments on commit de9b65c

Please sign in to comment.