Skip to content

Commit

Permalink
✨ release(patch): v3.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
kazupon committed May 9, 2016
1 parent aa92b33 commit f6a79e5
Show file tree
Hide file tree
Showing 7 changed files with 27 additions and 9 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
<a name="3.1.1"></a>
## [3.1.1](https://github.com/kazupon/vue-i18n/compare/v3.1.0...v3.1.1) (2016-05-09)


### :star: New Features

* auto installation for standalone ([2b0dc09](https://github.com/kazupon/vue-i18n/commit/2b0dc09))



<a name="3.1.0"></a>
# [3.1.0](https://github.com/kazupon/vue-i18n/compare/v3.0.0...v3.1.0) (2016-05-09)

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ Internationalization plugin of Vue.js
jsdelivr

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

## NPM
Expand Down
8 changes: 6 additions & 2 deletions dist/vue-i18n.common.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* vue-i18n v3.1.0
* vue-i18n v3.1.1
* (c) 2016 kazuya kawaguchi
* Released under the MIT License.
*/
Expand Down Expand Up @@ -849,6 +849,10 @@ function setupLangVM(Vue, lang) {
Vue.config.silent = silent;
}

plugin.version = '3.1.0';
plugin.version = '3.1.1';

if (typeof window !== 'undefined' && window.Vue) {
window.Vue.use(plugin);
}

module.exports = plugin;
8 changes: 6 additions & 2 deletions dist/vue-i18n.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* vue-i18n v3.1.0
* vue-i18n v3.1.1
* (c) 2016 kazuya kawaguchi
* Released under the MIT License.
*/
Expand Down Expand Up @@ -853,7 +853,11 @@
Vue.config.silent = silent;
}

plugin.version = '3.1.0';
plugin.version = '3.1.1';

if (typeof window !== 'undefined' && window.Vue) {
window.Vue.use(plugin);
}

return plugin;

Expand Down
4 changes: 2 additions & 2 deletions dist/vue-i18n.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 package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "vue-i18n",
"description": "Internationalization plugin for Vue.js",
"version": "3.1.0",
"version": "3.1.1",
"author": {
"name": "kazuya kawaguchi",
"email": "[email protected]"
Expand Down
2 changes: 1 addition & 1 deletion src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ function setupLangVM (Vue, lang) {
Vue.config.silent = silent
}

plugin.version = '3.1.0'
plugin.version = '3.1.1'

export default plugin

Expand Down

0 comments on commit f6a79e5

Please sign in to comment.