Skip to content

Commit 253b252

Browse files
committed
Release 2.0
1 parent 7eb31a7 commit 253b252

File tree

7 files changed

+13
-8
lines changed

7 files changed

+13
-8
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## [2.0.0] - 2016-10-20
2+
3+
No changes from 2.0.0-rc2
4+
15
## [2.0.0-rc2] - 2016-09-28
26

37
## Fixed
@@ -43,3 +47,4 @@ Initial release
4347
[1.0.0]: https://github.com/simplesmiler/vue-focus/compare/0.1.2...1.0.0
4448
[2.0.0-rc1]: https://github.com/simplesmiler/vue-focus/compare/1.0.0...2.0.0-rc1
4549
[2.0.0-rc2]: https://github.com/simplesmiler/vue-focus/compare/2.0.0-rc1...2.0.0-rc2
50+
[2.0.0]: https://github.com/simplesmiler/vue-focus/compare/2.0.0-rc2...2.0.0

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,9 @@ $ npm install vue-focus --save
3434
From CDN:
3535

3636
``` html
37-
<script src="https://cdnjs.cloudflare.com/ajax/libs/vue-focus/2.0.0-rc2/vue-focus.js"></script>
37+
<script src="https://cdnjs.cloudflare.com/ajax/libs/vue-focus/2.0.0/vue-focus.js"></script>
3838
<!-- OR -->
39-
<script src="https://cdnjs.cloudflare.com/ajax/libs/vue-focus/2.0.0-rc2/vue-focus.min.js"></script>
39+
<script src="https://cdnjs.cloudflare.com/ajax/libs/vue-focus/2.0.0/vue-focus.min.js"></script>
4040
```
4141

4242
## API

dist/vue-focus.common.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
var Vue = require('vue');
44
Vue = 'default' in Vue ? Vue['default'] : Vue;
55

6-
var version = '2.0.0-rc1';
6+
var version = '2.0.0';
77

88
var compatible = (/^2\./).test(Vue.version);
99
if (!compatible) {

dist/vue-focus.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

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

5-
var version = '2.0.0-rc1';
5+
var version = '2.0.0';
66

77
var compatible = (/^2\./).test(Vue.version);
88
if (!compatible) {

dist/vue-focus.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import Vue from 'vue';
22

3-
export var version = '2.0.0-rc1';
3+
export var version = '2.0.0';
44

55
var compatible = (/^2\./).test(Vue.version);
66
if (!compatible) {

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "vue-focus",
33
"description": "A set of reusable focus directives for reusable Vue.js components",
4-
"version": "2.0.0-rc2",
4+
"version": "2.0.0",
55
"author": "Denis Karabaza <[email protected]>",
66
"browserify": {
77
"transform": [
@@ -36,7 +36,7 @@
3636
"license": "MIT",
3737
"main": "dist/vue-focus.common.js",
3838
"peerDependencies": {
39-
"vue": "^2.0.0-rc.1"
39+
"vue": "^2.0.0"
4040
},
4141
"repository": {
4242
"type": "git",

0 commit comments

Comments
 (0)