aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVincent Prouillet2018-07-27 14:07:17 +0200
committerVincent Prouillet2018-07-27 14:07:17 +0200
commit5edb34ac261f7025ee0bb9c25ec1c216ded5aba2 (patch)
treef1c927faea3b37d1eefec70880f4ae2b8cea2bd9
parentf4b11eaecb8fcc4798eb3a932a68c47ed802d96d (diff)
downloadvalidator-5edb34ac261f7025ee0bb9c25ec1c216ded5aba2.tar.bz2
Prepare release
-rw-r--r--README.md8
-rw-r--r--validator/Cargo.toml2
-rw-r--r--validator_derive/Cargo.toml2
3 files changed, 10 insertions, 2 deletions
diff --git a/README.md b/README.md
index aac2903..5a69c50 100644
--- a/README.md
+++ b/README.md
@@ -223,6 +223,10 @@ For example, the following attributes all work:
### validator
+#### 0.7.1 (2018/07/27)
+
+- Make validators work on `Cow`
+
#### 0.7.0 (2018/05/29)
- Feature gate the card validator
@@ -241,6 +245,10 @@ For example, the following attributes all work:
### validator_derive
+#### 0.7.2 (2018/07/27)
+
+- Make validators work on `Cow`
+
#### 0.7.1 (2018/06/28)
- Update dependencies
diff --git a/validator/Cargo.toml b/validator/Cargo.toml
index 08f7bae..5cc6589 100644
--- a/validator/Cargo.toml
+++ b/validator/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "validator"
-version = "0.7.0"
+version = "0.7.1"
authors = ["Vincent Prouillet <vincent@wearewizards.io>"]
license = "MIT"
description = "Common validation functions (email, url, length, ...) and trait"
diff --git a/validator_derive/Cargo.toml b/validator_derive/Cargo.toml
index 30c2d50..bcacc9b 100644
--- a/validator_derive/Cargo.toml
+++ b/validator_derive/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "validator_derive"
-version = "0.7.1"
+version = "0.7.2"
authors = ["Vincent Prouillet <vincent@wearewizards.io>"]
license = "MIT"
description = "Macros 1.1 implementation of #[derive(Validate)]"