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 7eb31a7 commit 253b252
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 8 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## [2.0.0] - 2016-10-20

No changes from 2.0.0-rc2

## [2.0.0-rc2] - 2016-09-28

## Fixed
Expand Down Expand Up @@ -43,3 +47,4 @@ Initial release
[1.0.0]: https://github.com/simplesmiler/vue-focus/compare/0.1.2...1.0.0
[2.0.0-rc1]: https://github.com/simplesmiler/vue-focus/compare/1.0.0...2.0.0-rc1
[2.0.0-rc2]: https://github.com/simplesmiler/vue-focus/compare/2.0.0-rc1...2.0.0-rc2
[2.0.0]: https://github.com/simplesmiler/vue-focus/compare/2.0.0-rc2...2.0.0
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,9 @@ $ npm install vue-focus --save
From CDN:

``` html
<script src="https://cdnjs.cloudflare.com/ajax/libs/vue-focus/2.0.0-rc2/vue-focus.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/vue-focus/2.0.0/vue-focus.js"></script>
<!-- OR -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/vue-focus/2.0.0-rc2/vue-focus.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/vue-focus/2.0.0/vue-focus.min.js"></script>
```

## API
Expand Down
2 changes: 1 addition & 1 deletion dist/vue-focus.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-rc1';
var version = '2.0.0';

var compatible = (/^2\./).test(Vue.version);
if (!compatible) {
Expand Down
2 changes: 1 addition & 1 deletion dist/vue-focus.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-rc1';
var version = '2.0.0';

var compatible = (/^2\./).test(Vue.version);
if (!compatible) {
Expand Down
2 changes: 1 addition & 1 deletion dist/vue-focus.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-rc1';
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-focus",
"description": "A set of reusable focus directives for reusable Vue.js components",
"version": "2.0.0-rc2",
"version": "2.0.0",
"author": "Denis Karabaza <denis.karabaza@gmail.com>",
"browserify": {
"transform": [
Expand Down Expand Up @@ -36,7 +36,7 @@
"license": "MIT",
"main": "dist/vue-focus.common.js",
"peerDependencies": {
"vue": "^2.0.0-rc.1"
"vue": "^2.0.0"
},
"repository": {
"type": "git",
Expand Down

0 comments on commit 253b252

Please sign in to comment.