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

Commit c277e3f

Browse files
authored
Merge pull request #10 from kazupon/releases/v0.2.0
minor release v0.2.0
2 parents 2b9ee39 + 5e09203 commit c277e3f

File tree

6 files changed

+48
-572
lines changed

6 files changed

+48
-572
lines changed

.circleci/config.yml

Lines changed: 0 additions & 48 deletions
This file was deleted.

.github/workflows/test.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
name: Test
2+
on:
3+
push:
4+
branches-ignore:
5+
- gh-pages
6+
pull_request:
7+
env:
8+
CI: true
9+
10+
jobs:
11+
test:
12+
name: "Test on Node.js ${{ matrix.node }} OS: ${{matrix.os}}"
13+
runs-on: ${{ matrix.os }}
14+
strategy:
15+
matrix:
16+
os: [ubuntu-latest]
17+
node: [10, 12, 14]
18+
steps:
19+
- name: Checkout
20+
uses: actions/checkout@v2
21+
- name: Setup Node.js ${{ matrix.node }}
22+
uses: actions/setup-node@v1
23+
with:
24+
node-version: ${{ matrix.node }}
25+
- name: Install
26+
run: yarn install
27+
- name: Test
28+
run: yarn test

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
2+
## v0.2.0 (2020-05-11)
3+
4+
#### :star: Features
5+
* [#9](https://github.com/kazupon/vue-i18n-jest/pull/9) Feature add locale import ([@charlybrown03](https://github.com/charlybrown03))
6+
7+
#### Committers: 1
8+
- Carlos Moreno ([@charlybrown03](https://github.com/charlybrown03))
9+
110
<a name="0.1.1"></a>
211
## [0.1.1](https://github.com/kazupon/vue-i18n-jest/compare/v0.1.0...v0.1.1) (2019-11-15)
312

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
# :globe_with_meridians: vue-i18n-jest
22

33
[![npm](https://img.shields.io/npm/v/vue-i18n-jest.svg)](https://www.npmjs.com/package/vue-i18n-jest)
4-
[![CircleCI](https://circleci.com/gh/kazupon/vue-i18n-jest/tree/master.svg?style=svg)](https://circleci.com/gh/kazupon/vue-i18n-jest/tree/master)
54
[![codecov](https://codecov.io/gh/kazupon/vue-i18n-jest/branch/master/graph/badge.svg)](https://codecov.io/gh/kazupon/vue-i18n-jest)
65

76
vue-jest wrapper for i18n custom blocks

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-jest",
33
"description": "vue-jest wrapper for i18n custom blocks",
4-
"version": "0.1.1",
4+
"version": "0.2.0",
55
"author": {
66
"name": "kazuya kawaguchi",
77
"email": "[email protected]"

0 commit comments

Comments
 (0)