Skip to content

Commit

Permalink
Release 2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
simplesmiler committed Oct 20, 2016
1 parent 69e26be commit b213699
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 8 deletions.
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## [2.0.0] - 2016-10-20

### Breaking changes
- Removed deprecated submodules

## [2.0.0-rc.1] - 2016-09-30

Reworked for Vue 2.0
Expand Down Expand Up @@ -72,4 +77,5 @@ Initial release
[1.1.3]: https://github.com/simplesmiler/vue-clickaway/compare/1.1.2...1.1.3
[1.1.5]: https://github.com/simplesmiler/vue-clickaway/compare/1.1.3...1.1.5

[2.0.0]: https://github.com/simplesmiler/vue-clickaway/compare/1.1.5...2.0.0
[2.0.0-rc.1]: https://github.com/simplesmiler/vue-clickaway/compare/1.1.5...2.0.0-rc.1
[2.0.0]: https://github.com/simplesmiler/vue-clickaway/compare/2.0.0-rc.1...2.0.0
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ the [demo](https://jsfiddle.net/simplesmiler/4w1cs8u3/) before reading further.

## Requirements

- vue: ^2.0.0-rc.1
- vue: ^2.0.0

If you need a version for Vue 1, try `[email protected]`.

Expand Down
2 changes: 1 addition & 1 deletion dist/vue-clickaway.common.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
var Vue = require('vue');
Vue = 'default' in Vue ? Vue['default'] : Vue;

var version = '2.0.0-rc.1';
var version = '2.0.0';

var compatible = (/^2\./).test(Vue.version);
if (!compatible) {
Expand Down
2 changes: 1 addition & 1 deletion dist/vue-clickaway.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

Vue = 'default' in Vue ? Vue['default'] : Vue;

var version = '2.0.0-rc.1';
var version = '2.0.0';

var compatible = (/^2\./).test(Vue.version);
if (!compatible) {
Expand Down
2 changes: 1 addition & 1 deletion dist/vue-clickaway.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import Vue from 'vue';

export var version = '2.0.0-rc.1';
export var version = '2.0.0';

var compatible = (/^2\./).test(Vue.version);
if (!compatible) {
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "vue-clickaway",
"description": "Reusable clickaway directive for reusable Vue.js components",
"version": "2.0.0-rc.1",
"version": "2.0.0",
"author": "Denis Karabaza <[email protected]>",
"browserify": {
"transform": [
Expand Down Expand Up @@ -33,7 +33,7 @@
"license": "MIT",
"main": "dist/vue-clickaway.common.js",
"peerDependencies": {
"vue": "^2.0.0-rc.1"
"vue": "^2.0.0"
},
"repository": {
"type": "git",
Expand Down

0 comments on commit b213699

Please sign in to comment.