Skip to content
This repository was archived by the owner on Dec 31, 2024. It is now read-only.

Commit f6a79e5

Browse files
committed
✨ release(patch): v3.1.1
1 parent aa92b33 commit f6a79e5

File tree

7 files changed

+27
-9
lines changed

7 files changed

+27
-9
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
<a name="3.1.1"></a>
2+
## [3.1.1](https://github.com/kazupon/vue-i18n/compare/v3.1.0...v3.1.1) (2016-05-09)
3+
4+
5+
### :star: New Features
6+
7+
* auto installation for standalone ([2b0dc09](https://github.com/kazupon/vue-i18n/commit/2b0dc09))
8+
9+
10+
111
<a name="3.1.0"></a>
212
# [3.1.0](https://github.com/kazupon/vue-i18n/compare/v3.0.0...v3.1.0) (2016-05-09)
313

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Internationalization plugin of Vue.js
1919
jsdelivr
2020

2121
```html
22-
<script src="https://cdn.jsdelivr.net/vue.i18n/3.1.0/vue-i18n.min.js"></script>
22+
<script src="https://cdn.jsdelivr.net/vue.i18n/3.1.1/vue-i18n.min.js"></script>
2323
```
2424

2525
## NPM

dist/vue-i18n.common.js

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* vue-i18n v3.1.0
2+
* vue-i18n v3.1.1
33
* (c) 2016 kazuya kawaguchi
44
* Released under the MIT License.
55
*/
@@ -849,6 +849,10 @@ function setupLangVM(Vue, lang) {
849849
Vue.config.silent = silent;
850850
}
851851

852-
plugin.version = '3.1.0';
852+
plugin.version = '3.1.1';
853+
854+
if (typeof window !== 'undefined' && window.Vue) {
855+
window.Vue.use(plugin);
856+
}
853857

854858
module.exports = plugin;

dist/vue-i18n.js

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* vue-i18n v3.1.0
2+
* vue-i18n v3.1.1
33
* (c) 2016 kazuya kawaguchi
44
* Released under the MIT License.
55
*/
@@ -853,7 +853,11 @@
853853
Vue.config.silent = silent;
854854
}
855855

856-
plugin.version = '3.1.0';
856+
plugin.version = '3.1.1';
857+
858+
if (typeof window !== 'undefined' && window.Vue) {
859+
window.Vue.use(plugin);
860+
}
857861

858862
return plugin;
859863

dist/vue-i18n.min.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "vue-i18n",
33
"description": "Internationalization plugin for Vue.js",
4-
"version": "3.1.0",
4+
"version": "3.1.1",
55
"author": {
66
"name": "kazuya kawaguchi",
77
"email": "kawakazu80@gmail.com"

src/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ function setupLangVM (Vue, lang) {
5151
Vue.config.silent = silent
5252
}
5353

54-
plugin.version = '3.1.0'
54+
plugin.version = '3.1.1'
5555

5656
export default plugin
5757

0 commit comments

Comments
 (0)