File tree 3 files changed +20
-1
lines changed
3 files changed +20
-1
lines changed Original file line number Diff line number Diff line change 25
25
uses : actions/setup-node@v1
26
26
with :
27
27
node-version : ${{ matrix.node }}
28
+ - name : Get yarn cache directory path
29
+ id : yarn-cache-dir-path
30
+ run : echo "::set-output name=dir::$(yarn cache dir)"
31
+ - uses : actions/cache@v2
32
+ id : yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`)
33
+ with :
34
+ path : ${{ steps.yarn-cache-dir-path.outputs.dir }}
35
+ key : ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
36
+ restore-keys : |
37
+ ${{ runner.os }}-yarn-
28
38
- name : Install
29
39
run : yarn install
30
40
- name : Test
Original file line number Diff line number Diff line change 1
1
2
+ ## v9.0.0-beta.8 (2020-11-18)
3
+
4
+ #### :bug : Bug Fixes
5
+ * [ #192 ] ( https://github.com/intlify/vue-i18n-next/pull/192 ) fix: cannot locale change for specified i18n custom blocks only ([ @kazupon ] ( https://github.com/kazupon ) )
6
+
7
+ #### Committers: 1
8
+ - kazuya kawaguchi ([ @kazupon ] ( https://github.com/kazupon ) )
9
+
10
+
2
11
## v9.0.0-beta.7 (2020-11-17)
3
12
4
13
#### :star : Features
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " vue-i18n" ,
3
3
"description" : " Internationalization plugin for Vue.js" ,
4
- "version" : " 9.0.0-beta.7 " ,
4
+ "version" : " 9.0.0-beta.8 " ,
5
5
"author" : {
6
6
"name" : " kazuya kawaguchi" ,
7
7
"email" : " kawakazu80@gmail.com"
You can’t perform that action at this time.
0 commit comments