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

Commit 334ae46

Browse files
committed
✨ release(patch): v4.0.1
1 parent eeaf936 commit 334ae46

File tree

7 files changed

+21
-11
lines changed

7 files changed

+21
-11
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="4.0.1"></a>
2+
## [4.0.1](https://github.com/kazupon/vue-i18n/compare/v4.0.0...v4.0.1) (2016-06-06)
3+
4+
5+
### :bug: Bug Fixes
6+
7+
* **translate:** fix underscore named argument translate issue ([eeaf936](https://github.com/kazupon/vue-i18n/commit/eeaf936))
8+
9+
10+
111
<a name="4.0.0"></a>
212
# [4.0.0](https://github.com/kazupon/vue-i18n/compare/v3.1.1...v4.0.0) (2016-05-10)
313

README.md

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

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

2626
## NPM

dist/vue-i18n.common.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* vue-i18n v4.0.0
2+
* vue-i18n v4.0.1
33
* (c) 2016 kazuya kawaguchi
44
* Released under the MIT License.
55
*/
@@ -661,7 +661,7 @@ function Config (Vue, langVM) {
661661
* https://github.com/Matt-Esch/string-template/index.js
662662
*/
663663

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

666666
/**
667667
* template
@@ -853,7 +853,7 @@ function setupLangVM(Vue, lang) {
853853
Vue.config.silent = silent;
854854
}
855855

856-
plugin.version = '4.0.0';
856+
plugin.version = '4.0.1';
857857

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

dist/vue-i18n.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* vue-i18n v4.0.0
2+
* vue-i18n v4.0.1
33
* (c) 2016 kazuya kawaguchi
44
* Released under the MIT License.
55
*/
@@ -665,7 +665,7 @@
665665
* https://github.com/Matt-Esch/string-template/index.js
666666
*/
667667

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

670670
/**
671671
* template
@@ -857,7 +857,7 @@
857857
Vue.config.silent = silent;
858858
}
859859

860-
plugin.version = '4.0.0';
860+
plugin.version = '4.0.1';
861861

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

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": "4.0.0",
4+
"version": "4.0.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 = '4.0.0'
54+
plugin.version = '4.0.1'
5555

5656
export default plugin
5757

0 commit comments

Comments
 (0)