Skip to content

Commit

Permalink
release 2.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
kazupon committed Dec 1, 2015
1 parent eb2e459 commit 99737ab
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 16 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
<a name="2.3.1"></a>
## [2.3.1](https://github.com/kazupon/vue-i18n/compare/v2.3.0...v2.3.1) (2015-12-01)

### Reverts

* **index:** automatically install for standalone ([25b8059](https://github.com/kazupon/vue-i18n/commit/25b8059))



<a name="2.3.0"></a>
# [2.3.0](https://github.com/kazupon/vue-i18n/compare/v2.2.0...v2.3.0) (2015-11-26)

Expand Down
17 changes: 4 additions & 13 deletions dist/vue-i18n.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* vue-i18n v2.3.0
* vue-i18n v2.3.1
* (c) 2015 kazuya kawaguchi
* Released under the MIT License.
*/
Expand Down Expand Up @@ -64,7 +64,6 @@ return /******/ (function(modules) { // webpackBootstrap
Object.defineProperty(exports, '__esModule', {
value: true
});
exports['default'] = install;

function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { 'default': obj }; }

Expand All @@ -73,18 +72,18 @@ return /******/ (function(modules) { // webpackBootstrap
var _extend2 = _interopRequireDefault(_extend);

/**
* install
* plugin
*
* @param {Object} Vue
* @param {Object} opts
*/

function install(Vue) {
exports['default'] = function (Vue) {
var opts = arguments.length <= 1 || arguments[1] === undefined ? { lang: 'en', locales: {} } : arguments[1];

defineConfig(Vue.config, opts.lang);
(0, _extend2['default'])(Vue, opts.locales);
}
};

/**
* defineConfig
Expand All @@ -106,14 +105,6 @@ return /******/ (function(modules) { // webpackBootstrap
}
});
}

/**
* install automaticlly
*/

if (typeof window !== 'undefined' && window.Vue) {
window.Vue.use(install);
}
module.exports = exports['default'];

/***/ },
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": "2.3.0",
"version": "2.3.1",
"author": {
"name": "kazuya kawaguchi",
"email": "[email protected]"
Expand Down

0 comments on commit 99737ab

Please sign in to comment.