Skip to content
This repository was archived by the owner on Dec 25, 2017. It is now read-only.

Commit d7cabcb

Browse files
committed
✨ release(patch): v2.1.5
1 parent 7013c4e commit d7cabcb

9 files changed

+24
-12
lines changed

CHANGELOG.md

+10
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
<a name="2.1.5"></a>
2+
## [2.1.5](https://github.com/vuejs/vue-validator/compare/v2.1.4...v2.1.5) (2016-07-25)
3+
4+
5+
### :bug: Bug Fixes
6+
7+
* **validate:** fix cannot change validation rule and error message ([7013c4e](https://github.com/vuejs/vue-validator/commit/7013c4e))
8+
9+
10+
111
<a name="2.1.4"></a>
212
## [2.1.4](https://github.com/vuejs/vue-validator/compare/v2.1.3...v2.1.4) (2016-07-19)
313

dist/vue-validator.common.js

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* vue-validator v2.1.4
2+
* vue-validator v2.1.5
33
* (c) 2016 kazuya kawaguchi
44
* Released under the MIT License.
55
*/
@@ -541,6 +541,7 @@ function Validate (Vue) {
541541
*/
542542

543543
Vue.directive('validate', {
544+
deep: true,
544545
terminal: true,
545546
priority: vIf.priority + PRIORITY_VALIDATE,
546547
params: ['group', 'field', 'detect-blur', 'detect-change', 'initial', 'classes'],
@@ -2603,7 +2604,7 @@ function plugin(Vue) {
26032604
Validate(Vue);
26042605
}
26052606

2606-
plugin.version = '2.1.4';
2607+
plugin.version = '2.1.5';
26072608

26082609
if (typeof window !== 'undefined' && window.Vue) {
26092610
window.Vue.use(plugin);

dist/vue-validator.js

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* vue-validator v2.1.4
2+
* vue-validator v2.1.5
33
* (c) 2016 kazuya kawaguchi
44
* Released under the MIT License.
55
*/
@@ -545,6 +545,7 @@ var validators = Object.freeze({
545545
*/
546546

547547
Vue.directive('validate', {
548+
deep: true,
548549
terminal: true,
549550
priority: vIf.priority + PRIORITY_VALIDATE,
550551
params: ['group', 'field', 'detect-blur', 'detect-change', 'initial', 'classes'],
@@ -2607,7 +2608,7 @@ var validators = Object.freeze({
26072608
Validate(Vue);
26082609
}
26092610

2610-
plugin.version = '2.1.4';
2611+
plugin.version = '2.1.5';
26112612

26122613
if (typeof window !== 'undefined' && window.Vue) {
26132614
window.Vue.use(plugin);

dist/vue-validator.min.js

+3-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/en/installation.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ See [dist folder](https://github.com/vuejs/vue-validator/tree/dev/dist). Note th
99
### jsdelivr
1010

1111
```html
12-
<script src="https://cdn.jsdelivr.net/vue.validator/2.1.4/vue-validator.min.js"></script>
12+
<script src="https://cdn.jsdelivr.net/vue.validator/2.1.5/vue-validator.min.js"></script>
1313
```
1414

1515
## NPM

docs/ja/installation.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
### jsdelivr
1010

1111
```html
12-
<script src="https://cdn.jsdelivr.net/vue.validator/2.1.4/vue-validator.min.js"></script>
12+
<script src="https://cdn.jsdelivr.net/vue.validator/2.1.5/vue-validator.min.js"></script>
1313
```
1414

1515
## NPM

docs/zh-cn/installation.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
### jsdelivr
1010

1111
```html
12-
<script src="https://cdn.jsdelivr.net/vue.validator/2.1.4/vue-validator.min.js"></script>
12+
<script src="https://cdn.jsdelivr.net/vue.validator/2.1.5/vue-validator.min.js"></script>
1313
```
1414

1515
## NPM

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "vue-validator",
33
"description": "Validator component for Vue.js",
4-
"version": "2.1.4",
4+
"version": "2.1.5",
55
"author": {
66
"name": "kazuya kawaguchi",
77
"email": "[email protected]"

src/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ function plugin (Vue, options = {}) {
3030
Validate(Vue)
3131
}
3232

33-
plugin.version = '2.1.4'
33+
plugin.version = '2.1.5'
3434

3535
export default plugin
3636

0 commit comments

Comments
 (0)