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

Commit

Permalink
release v2.0.0-beta.1
Browse files Browse the repository at this point in the history
  • Loading branch information
kazupon committed Mar 12, 2016
1 parent fca73f1 commit 39c4bdd
Show file tree
Hide file tree
Showing 8 changed files with 2,053 additions and 1,947 deletions.
24 changes: 24 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,27 @@
<a name="2.0.0-beta.1"></a>
# [2.0.0-beta.1](https://github.com/vuejs/vue-validator/compare/v2.0.0-alpha.22...v2.0.0-beta.1) (2016-03-12)


### Bug Fixes

* **validation:** change babel es2015 preset to es2015 loose (for IE 9/10) ([bd1a21b](https://github.com/vuejs/vue-validator/commit/bd1a21b)), closes [#161](https://github.com/vuejs/vue-validator/issues/161)
* **validation:** touched property issues ([d8f1d09](https://github.com/vuejs/vue-validator/commit/d8f1d09)), closes [#163](https://github.com/vuejs/vue-validator/issues/163)

### Features

* **api:** expose `vm` and `el` property at the validator function context ([faaf4ca](https://github.com/vuejs/vue-validator/commit/faaf4ca)), closes [#63](https://github.com/vuejs/vue-validator/issues/63) [#165](https://github.com/vuejs/vue-validator/issues/165)
* **api:** update api interfaces ([b70de4d](https://github.com/vuejs/vue-validator/commit/b70de4d))
* **async:** support async validation ([a21a0af](https://github.com/vuejs/vue-validator/commit/a21a0af)), closes [#156](https://github.com/vuejs/vue-validator/issues/156)
* **async:** support async validation error message ([7e65517](https://github.com/vuejs/vue-validator/commit/7e65517))
* **v-validate:** add 'initial' params ([7d1ecd5](https://github.com/vuejs/vue-validator/commit/7d1ecd5)), closes [#58](https://github.com/vuejs/vue-validator/issues/58)
* **validator:** add 'initial' option ([cc01431](https://github.com/vuejs/vue-validator/commit/cc01431)), closes [#58](https://github.com/vuejs/vue-validator/issues/58)

### Performance Improvements

* **validation:** improve validation performance ([3e79962](https://github.com/vuejs/vue-validator/commit/3e79962))



<a name="2.0.0-alpha.22"></a>
# [2.0.0-alpha.22](https://github.com/vuejs/vue-validator/compare/v2.0.0-alpha.21...v2.0.0-alpha.22) (2016-02-29)

Expand Down
10 changes: 3 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,6 @@ Validator component for Vue.js
# Requirements
- Vue.js `1.0.14`+

## NOTE
vue-validator is still in its alpha verison. There may be some breaking changes.
If you have some feedback, you're welcome in [Vue.js Discussion](http://forum.vuejs.org) :smiley_cat:


# Installation

Expand Down Expand Up @@ -45,7 +41,7 @@ You don't need to do this when using the standalone build, as it installs itself
## CDN
jsdelivr
```html
<script src="https://cdn.jsdelivr.net/vue.validator/2.0.0-alpha.22/vue-validator.min.js"></script>
<script src="https://cdn.jsdelivr.net/vue.validator/2.0.0-beta.1/vue-validator.min.js"></script>
```


Expand Down Expand Up @@ -1469,9 +1465,9 @@ new Vue({


# TODO
- a little improvemnets
- more docs with gitbook
- more documentation with gitbook
- more tests !!
- a little improvemnets
- [and other issues...](https://github.com/vuejs/vue-validator/labels/2.0)


Expand Down
4 changes: 2 additions & 2 deletions config/build.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,14 @@ var banner = require('./banner')
// update main file
var main = fs
.readFileSync('src/index.js', 'utf-8')
.replace(/plugin\.version = '[\d\.]+-alpha\.[\d]+'/, "plugin.version = '" + pack.version + "'")
.replace(/plugin\.version = '[\d\.]+-beta\.[\d]+'/, "plugin.version = '" + pack.version + "'")
fs.writeFileSync('src/index.js', main)

// update README
var readme = fs
.readFileSync('README.md', 'utf-8')
.replace(
/\<script src=\"https\:\/\/cdn\.jsdelivr\.net\/vue\.validator\/[\d\.]+-alpha\.[\d]+\/vue-validator\.min\.js\"\>\<\/script\>/,
/\<script src=\"https\:\/\/cdn\.jsdelivr\.net\/vue\.validator\/[\d\.]+-beta\.[\d]+\/vue-validator\.min\.js\"\>\<\/script\>/,
'<script src="https://cdn.jsdelivr.net/vue.validator/' + pack.version + '/vue-validator.min.js"></script>'
)
fs.writeFileSync('README.md', readme)
Expand Down
Loading

0 comments on commit 39c4bdd

Please sign in to comment.