Skip to content

Commit

Permalink
✨ release(patch): v4.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
kazupon committed Jun 6, 2016
1 parent eeaf936 commit 334ae46
Show file tree
Hide file tree
Showing 7 changed files with 21 additions and 11 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="4.0.1"></a>
## [4.0.1](https://github.com/kazupon/vue-i18n/compare/v4.0.0...v4.0.1) (2016-06-06)


### :bug: Bug Fixes

* **translate:** fix underscore named argument translate issue ([eeaf936](https://github.com/kazupon/vue-i18n/commit/eeaf936))



<a name="4.0.0"></a>
# [4.0.0](https://github.com/kazupon/vue-i18n/compare/v3.1.1...v4.0.0) (2016-05-10)

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

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

## NPM
Expand Down
6 changes: 3 additions & 3 deletions dist/vue-i18n.common.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* vue-i18n v4.0.0
* vue-i18n v4.0.1
* (c) 2016 kazuya kawaguchi
* Released under the MIT License.
*/
Expand Down Expand Up @@ -661,7 +661,7 @@ function Config (Vue, langVM) {
* https://github.com/Matt-Esch/string-template/index.js
*/

var RE_NARGS = /(%|)\{([0-9a-zA-Z]+)\}/g;
var RE_NARGS = /(%|)\{([0-9a-zA-Z_]+)\}/g;

/**
* template
Expand Down Expand Up @@ -853,7 +853,7 @@ function setupLangVM(Vue, lang) {
Vue.config.silent = silent;
}

plugin.version = '4.0.0';
plugin.version = '4.0.1';

if (typeof window !== 'undefined' && window.Vue) {
window.Vue.use(plugin);
Expand Down
6 changes: 3 additions & 3 deletions dist/vue-i18n.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* vue-i18n v4.0.0
* vue-i18n v4.0.1
* (c) 2016 kazuya kawaguchi
* Released under the MIT License.
*/
Expand Down Expand Up @@ -665,7 +665,7 @@
* https://github.com/Matt-Esch/string-template/index.js
*/

var RE_NARGS = /(%|)\{([0-9a-zA-Z]+)\}/g;
var RE_NARGS = /(%|)\{([0-9a-zA-Z_]+)\}/g;

/**
* template
Expand Down Expand Up @@ -857,7 +857,7 @@
Vue.config.silent = silent;
}

plugin.version = '4.0.0';
plugin.version = '4.0.1';

if (typeof window !== 'undefined' && window.Vue) {
window.Vue.use(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": "4.0.0",
"version": "4.0.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 = '4.0.0'
plugin.version = '4.0.1'

export default plugin

Expand Down

0 comments on commit 334ae46

Please sign in to comment.