Skip to content

Commit 34cbae0

Browse files
authoredNov 18, 2020
prerelease release v9.0.0-beta.8 (#193)
* prerelease release v9.0.0-beta.8 * add caching
1 parent d1b75f3 commit 34cbae0

File tree

3 files changed

+20
-1
lines changed

3 files changed

+20
-1
lines changed
 

‎.github/workflows/test.yml

+10
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,16 @@ jobs:
2525
uses: actions/setup-node@v1
2626
with:
2727
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-
2838
- name: Install
2939
run: yarn install
3040
- name: Test

‎CHANGELOG.md

+9
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,13 @@
11

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+
211
## v9.0.0-beta.7 (2020-11-17)
312

413
#### :star: Features

‎package.json

+1-1
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": "9.0.0-beta.7",
4+
"version": "9.0.0-beta.8",
55
"author": {
66
"name": "kazuya kawaguchi",
77
"email": "kawakazu80@gmail.com"

0 commit comments

Comments
 (0)