aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--README.md10
-rw-r--r--validator_derive/Cargo.toml10
2 files changed, 14 insertions, 6 deletions
diff --git a/README.md b/README.md
index 22ad2a1..c034c70 100644
--- a/README.md
+++ b/README.md
@@ -225,9 +225,13 @@ For example, the following attributes all work:
### validator
+#### 0.6.2 (2017/11/08)
+
+- Fix credit card validation being incorrect in enum
+
#### 0.6.1 (2017/11/08)
-- Add international phone number validation
+- Add international phone number and credit card validation
#### 0.6.0 (2017/08/12)
@@ -235,6 +239,10 @@ For example, the following attributes all work:
### validator_derive
+#### 0.6.1 (2017/11/08)
+
+- Add international phone number and credit card derive
+
#### 0.6.0 (2017/08/12)
- Change generated code to make the new design of errors work
diff --git a/validator_derive/Cargo.toml b/validator_derive/Cargo.toml
index 707dc84..2e5f31f 100644
--- a/validator_derive/Cargo.toml
+++ b/validator_derive/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "validator_derive"
-version = "0.6.0"
+version = "0.6.1"
authors = ["Vincent Prouillet <vincent@wearewizards.io>"]
license = "MIT"
description = "Macros 1.1 implementation of #[derive(Validate)]"
@@ -25,10 +25,10 @@ regex = "0.2"
lazy_static = "0.2"
[dependencies.validator]
-path = "../validator"
-# version = "0.6"
+# path = "../validator"
+version = "0.6"
[dev-dependencies.validator]
-path = "../validator"
-# version = "0.6"
+# path = "../validator"
+version = "0.6"
features = ["phone"]