Skip to content

Commit c3a620c

Browse files
chore: release 5.0.0 (#71)
1 parent de257f7 commit c3a620c

File tree

5 files changed

+6932
-38
lines changed

5 files changed

+6932
-38
lines changed

.circleci/config.yml

-37
This file was deleted.

.github/workflows/ci.yaml

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
on:
2+
push:
3+
branches:
4+
- master
5+
pull_request:
6+
types: [ assigned, opened, synchronize, reopened, labeled ]
7+
name: ci
8+
jobs:
9+
test:
10+
runs-on: ubuntu-latest
11+
strategy:
12+
matrix:
13+
node: [12, 14, 16]
14+
steps:
15+
- uses: actions/checkout@v1
16+
- uses: actions/setup-node@v1
17+
with:
18+
node-version: ${{ matrix.node }}
19+
- run: node --version
20+
- run: npm install --engine-strict
21+
- run: npm test
22+
windows:
23+
runs-on: windows-latest
24+
steps:
25+
- uses: actions/checkout@v2
26+
- uses: actions/setup-node@v1
27+
with:
28+
node-version: 14
29+
- run: npm install
30+
- run: npm test

CHANGELOG.md

+11
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
# Changelog
22

3+
## [5.0.0](https://www.github.com/conventional-changelog/get-pkg-repo/compare/v4.2.0...v5.0.0) (2021-09-09)
4+
5+
6+
### ⚠ BREAKING CHANGES
7+
8+
* node 12 is now minimum engine (#70)
9+
10+
### Features
11+
12+
* node 12 is now minimum engine ([#70](https://www.github.com/conventional-changelog/get-pkg-repo/issues/70)) ([de257f7](https://www.github.com/conventional-changelog/get-pkg-repo/commit/de257f7afc9e7877546bc46abea057069aceb429))
13+
314
## [4.2.0](https://www.github.com/conventional-changelog/get-pkg-repo/compare/v4.1.2...v4.2.0) (2021-09-03)
415

516

0 commit comments

Comments
 (0)