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

Commit

Permalink
✨ release(patch): v2.1.5
Browse files Browse the repository at this point in the history
  • Loading branch information
kazupon committed Jul 25, 2016
1 parent 7013c4e commit d7cabcb
Show file tree
Hide file tree
Showing 9 changed files with 24 additions and 12 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
<a name="2.1.5"></a>
## [2.1.5](https://github.com/vuejs/vue-validator/compare/v2.1.4...v2.1.5) (2016-07-25)


### :bug: Bug Fixes

* **validate:** fix cannot change validation rule and error message ([7013c4e](https://github.com/vuejs/vue-validator/commit/7013c4e))



<a name="2.1.4"></a>
## [2.1.4](https://github.com/vuejs/vue-validator/compare/v2.1.3...v2.1.4) (2016-07-19)

Expand Down
5 changes: 3 additions & 2 deletions dist/vue-validator.common.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* vue-validator v2.1.4
* vue-validator v2.1.5
* (c) 2016 kazuya kawaguchi
* Released under the MIT License.
*/
Expand Down Expand Up @@ -541,6 +541,7 @@ function Validate (Vue) {
*/

Vue.directive('validate', {
deep: true,
terminal: true,
priority: vIf.priority + PRIORITY_VALIDATE,
params: ['group', 'field', 'detect-blur', 'detect-change', 'initial', 'classes'],
Expand Down Expand Up @@ -2603,7 +2604,7 @@ function plugin(Vue) {
Validate(Vue);
}

plugin.version = '2.1.4';
plugin.version = '2.1.5';

if (typeof window !== 'undefined' && window.Vue) {
window.Vue.use(plugin);
Expand Down
5 changes: 3 additions & 2 deletions dist/vue-validator.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* vue-validator v2.1.4
* vue-validator v2.1.5
* (c) 2016 kazuya kawaguchi
* Released under the MIT License.
*/
Expand Down Expand Up @@ -545,6 +545,7 @@ var validators = Object.freeze({
*/

Vue.directive('validate', {
deep: true,
terminal: true,
priority: vIf.priority + PRIORITY_VALIDATE,
params: ['group', 'field', 'detect-blur', 'detect-change', 'initial', 'classes'],
Expand Down Expand Up @@ -2607,7 +2608,7 @@ var validators = Object.freeze({
Validate(Vue);
}

plugin.version = '2.1.4';
plugin.version = '2.1.5';

if (typeof window !== 'undefined' && window.Vue) {
window.Vue.use(plugin);
Expand Down
6 changes: 3 additions & 3 deletions dist/vue-validator.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/en/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ See [dist folder](https://github.com/vuejs/vue-validator/tree/dev/dist). Note th
### jsdelivr

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

## NPM
Expand Down
2 changes: 1 addition & 1 deletion docs/ja/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
### jsdelivr

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

## NPM
Expand Down
2 changes: 1 addition & 1 deletion docs/zh-cn/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
### jsdelivr

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

## NPM
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "vue-validator",
"description": "Validator component for Vue.js",
"version": "2.1.4",
"version": "2.1.5",
"author": {
"name": "kazuya kawaguchi",
"email": "kawakazu80@gmail.com"
Expand Down
2 changes: 1 addition & 1 deletion src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ function plugin (Vue, options = {}) {
Validate(Vue)
}

plugin.version = '2.1.4'
plugin.version = '2.1.5'

export default plugin

Expand Down

0 comments on commit d7cabcb

Please sign in to comment.