File tree 9 files changed +46
-20
lines changed
9 files changed +46
-20
lines changed Original file line number Diff line number Diff line change 1
1
2
+ ## v9.0.0-rc.5 (2021-02-02)
3
+
4
+ #### :bug : Bug Fixes
5
+ * ` core-base `
6
+ * [ #330 ] ( https://github.com/intlify/vue-i18n-next/pull/330 ) fix won't fallback when ` fallbackLocale ` is empty string, and add a test ([ @PeterAlfredLee ] ( https://github.com/PeterAlfredLee ) )
7
+
8
+ #### :zap : Improvement Features
9
+ * ` vue-i18n `
10
+ * [ #332 ] ( https://github.com/intlify/vue-i18n-next/pull/332 ) fix: support vue-devtools component inspector custom tags breaking change ([ @kazupon ] ( https://github.com/kazupon ) )
11
+
12
+ #### :pencil : Documentation
13
+ * [ #329 ] ( https://github.com/intlify/vue-i18n-next/pull/329 ) fix typo in docs lazy.md ([ @candy02058912 ] ( https://github.com/candy02058912 ) )
14
+ * [ #323 ] ( https://github.com/intlify/vue-i18n-next/pull/323 ) Fix typos in readme.md ([ @Duncank ] ( https://github.com/Duncank ) )
15
+ * [ #317 ] ( https://github.com/intlify/vue-i18n-next/pull/317 ) update lazy loading docs ([ @kazupon ] ( https://github.com/kazupon ) )
16
+ * [ #316 ] ( https://github.com/intlify/vue-i18n-next/pull/316 ) update composition api docs ([ @kazupon ] ( https://github.com/kazupon ) )
17
+ * [ #313 ] ( https://github.com/intlify/vue-i18n-next/pull/313 ) fix some typos in docs/ ([ @PeterAlfredLee ] ( https://github.com/PeterAlfredLee ) )
18
+ * [ #312 ] ( https://github.com/intlify/vue-i18n-next/pull/312 ) Fix spelling line 195 for sfc doc : lessages to messages ([ @s3bc40 ] ( https://github.com/s3bc40 ) )
19
+
20
+ #### Committers: 5
21
+ - Candy Tsai ([ @candy02058912 ] ( https://github.com/candy02058912 ) )
22
+ - Duncan Krebbers ([ @Duncank ] ( https://github.com/Duncank ) )
23
+ - Lee ([ @PeterAlfredLee ] ( https://github.com/PeterAlfredLee ) )
24
+ - [ @s3bc40 ] ( https://github.com/s3bc40 )
25
+ - kazuya kawaguchi ([ @kazupon ] ( https://github.com/kazupon ) )
26
+
27
+
2
28
## v9.0.0-rc.4 (2021-01-22)
3
29
4
30
#### :bug : Bug Fixes
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " vue-i18n-next" ,
3
- "version" : " 9.0.0-rc.4 " ,
3
+ "version" : " 9.0.0-rc.5 " ,
4
4
"license" : " MIT" ,
5
5
"author" : {
6
6
"name" : " kazuya kawaguchi" ,
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @intlify/core-base" ,
3
- "version" : " 9.0.0-rc.4 " ,
3
+ "version" : " 9.0.0-rc.5 " ,
4
4
"description" : " @intlify/core-base" ,
5
5
"keywords" : [
6
6
" core" ,
33
33
"jsdelivr" : " dist/core-base.global.js" ,
34
34
"types" : " dist/core-base.d.ts" ,
35
35
"dependencies" : {
36
- "@intlify/message-compiler" : " 9.0.0-rc.4 " ,
37
- "@intlify/message-resolver" : " 9.0.0-rc.4 " ,
38
- "@intlify/runtime" : " 9.0.0-rc.4 " ,
39
- "@intlify/shared" : " 9.0.0-rc.4 "
36
+ "@intlify/message-compiler" : " 9.0.0-rc.5 " ,
37
+ "@intlify/message-resolver" : " 9.0.0-rc.5 " ,
38
+ "@intlify/runtime" : " 9.0.0-rc.5 " ,
39
+ "@intlify/shared" : " 9.0.0-rc.5 "
40
40
},
41
41
"engines" : {
42
42
"node" : " >= 10"
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @intlify/core" ,
3
- "version" : " 9.0.0-rc.4 " ,
3
+ "version" : " 9.0.0-rc.5 " ,
4
4
"description" : " @intlify/core" ,
5
5
"keywords" : [
6
6
" core" ,
33
33
"jsdelivr" : " dist/core.global.js" ,
34
34
"types" : " dist/core.d.ts" ,
35
35
"dependencies" : {
36
- "@intlify/core-base" : " 9.0.0-rc.4 "
36
+ "@intlify/core-base" : " 9.0.0-rc.5 "
37
37
},
38
38
"engines" : {
39
39
"node" : " >= 10"
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @intlify/message-compiler" ,
3
- "version" : " 9.0.0-rc.4 " ,
3
+ "version" : " 9.0.0-rc.5 " ,
4
4
"description" : " @intlify/message-compiler" ,
5
5
"keywords" : [
6
6
" compiler" ,
33
33
"jsdelivr" : " dist/message-compiler.global.js" ,
34
34
"types" : " dist/message-compiler.d.ts" ,
35
35
"dependencies" : {
36
- "@intlify/message-resolver" : " 9.0.0-rc.4 " ,
37
- "@intlify/shared" : " 9.0.0-rc.4 " ,
36
+ "@intlify/message-resolver" : " 9.0.0-rc.5 " ,
37
+ "@intlify/shared" : " 9.0.0-rc.5 " ,
38
38
"source-map" : " 0.6.1"
39
39
},
40
40
"engines" : {
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @intlify/message-resolver" ,
3
- "version" : " 9.0.0-rc.4 " ,
3
+ "version" : " 9.0.0-rc.5 " ,
4
4
"description" : " @intlify/message-resolver" ,
5
5
"keywords" : [
6
6
" i18n" ,
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @intlify/runtime" ,
3
- "version" : " 9.0.0-rc.4 " ,
3
+ "version" : " 9.0.0-rc.5 " ,
4
4
"description" : " @intlify/runtime" ,
5
5
"keywords" : [
6
6
" i18n" ,
30
30
"module" : " dist/runtime.esm-bundler.js" ,
31
31
"types" : " dist/runtime.d.ts" ,
32
32
"dependencies" : {
33
- "@intlify/message-compiler" : " 9.0.0-rc.4 " ,
34
- "@intlify/message-resolver" : " 9.0.0-rc.4 " ,
35
- "@intlify/shared" : " 9.0.0-rc.4 "
33
+ "@intlify/message-compiler" : " 9.0.0-rc.5 " ,
34
+ "@intlify/message-resolver" : " 9.0.0-rc.5 " ,
35
+ "@intlify/shared" : " 9.0.0-rc.5 "
36
36
},
37
37
"engines" : {
38
38
"node" : " >= 10"
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @intlify/shared" ,
3
- "version" : " 9.0.0-rc.4 " ,
3
+ "version" : " 9.0.0-rc.5 " ,
4
4
"description" : " @intlify/shared" ,
5
5
"keywords" : [
6
6
" i18n" ,
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " vue-i18n" ,
3
- "version" : " 9.0.0-rc.4 " ,
3
+ "version" : " 9.0.0-rc.5 " ,
4
4
"description" : " Internationalization plugin for Vue.js" ,
5
5
"keywords" : [
6
6
" i18n" ,
34
34
"jsdelivr" : " dist/vue-i18n.global.js" ,
35
35
"types" : " dist/vue-i18n.d.ts" ,
36
36
"dependencies" : {
37
- "@intlify/core-base" : " 9.0.0-rc.4 " ,
38
- "@intlify/shared" : " 9.0.0-rc.4 " ,
37
+ "@intlify/core-base" : " 9.0.0-rc.5 " ,
38
+ "@intlify/shared" : " 9.0.0-rc.5 " ,
39
39
"@vue/devtools-api" : " ^6.0.0-beta.5"
40
40
},
41
41
"peerDependencies" : {
You can’t perform that action at this time.
0 commit comments