aboutsummaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorVincent Prouillet2020-06-09 21:42:35 +0200
committerGitHub2020-06-09 21:42:35 +0200
commitde50cf78d2ce383d7c24fa283341c8e0a7a21de5 (patch)
tree81f4e4652c7a74e5717d2057ccf0929d54e31d40 /README.md
parented5fab36d7f0cb8313dd13464f6f9bfe2bafcf05 (diff)
parent709a78d1b6d749b8fb6bda98d3859e6502b449dc (diff)
downloadvalidator-master.tar.bz2
Merge pull request #105 from Keats/readyHEADmaster
Prepare for 0.10.1
Diffstat (limited to 'README.md')
-rw-r--r--README.md12
1 files changed, 11 insertions, 1 deletions
diff --git a/README.md b/README.md
index b55bebd..b74bc09 100644
--- a/README.md
+++ b/README.md
@@ -109,7 +109,9 @@ struct SignupData {
#[validate]
contact_details: ContactDetails,
#[validate]
- preferences: Vec<Preference>
+ preferences: Vec<Preference>,
+ #[validate(required)]
+ allow_cookies: Option<bool>,
}
#[derive(Debug, Validate, Deserialize)]
@@ -344,6 +346,11 @@ For example, the following attributes all work:
### validator
+#### 0.10.1 (2020/06/09)
+
+- Add a blanket Validate implementation for references
+- Add `Required` and `RequiredNested` validators
+
#### 0.10.0 (2019/10/18)
- Add `non_control_characters` validation
@@ -379,6 +386,9 @@ For example, the following attributes all work:
### validator_derive
+#### 0.10.1 (2020/06/09)
+
+- Handle `Required` and `RequiredNested` validators
#### 0.10.0 (2019/10/18)