Skip to content

Commit 6f403b9

Browse files
committed
Release 2.0.3
1 parent ed201c7 commit 6f403b9

9 files changed

Lines changed: 35 additions & 20 deletions

File tree

CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,19 @@
11

2+
3+
## v2.0.3 (2022-08-24)
4+
5+
#### :rocket: Enhancement
6+
* `cli`, `core`
7+
* [#1294](https://github.com/checkupjs/checkup/pull/1294) Adding stylish formatter to replace pretty formatter (deprecated) ([@scalvert](https://github.com/scalvert))
8+
9+
#### :bug: Bug Fix
10+
* `checkup-plugin-ember`, `checkup-plugin-javascript`, `cli`, `core`, `ui`
11+
* [#1292](https://github.com/checkupjs/checkup/pull/1292) Uses fully qualified task name everywhere ([@scalvert](https://github.com/scalvert))
12+
13+
#### Committers: 1
14+
- Steve Calvert ([@scalvert](https://github.com/scalvert))
15+
16+
217
## v2.0.2 (2022-08-11)
318

419
#### :bug: Bug Fix

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "checkup",
3-
"version": "2.0.2",
3+
"version": "2.0.3",
44
"private": true,
55
"repository": "https://github.com/checkupjs/checkup.git",
66
"license": "MIT",

packages/checkup-plugin-ember/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "checkup-plugin-ember",
3-
"version": "2.0.2",
3+
"version": "2.0.3",
44
"description": "A checkup plugin for Ember project tasks",
55
"keywords": [
66
"checkup-plugin"
@@ -27,7 +27,7 @@
2727
"@babel/parser": "^7.18.0",
2828
"@babel/traverse": "^7.14.2",
2929
"@babel/types": "7.18.8",
30-
"@checkup/core": "^2.0.2",
30+
"@checkup/core": "^2.0.3",
3131
"debug": "^4.3.1",
3232
"ember-template-recast": "^5.0.3",
3333
"eslint-plugin-ember": "^10.6.1",
@@ -36,8 +36,8 @@
3636
"tslib": "^2"
3737
},
3838
"devDependencies": {
39-
"@checkup/plugin": "^2.0.2",
40-
"@checkup/test-helpers": "^2.0.2",
39+
"@checkup/plugin": "^2.0.3",
40+
"@checkup/test-helpers": "^2.0.3",
4141
"@types/lodash.kebabcase": "^4.1.7",
4242
"eslint": "^8.15.0",
4343
"fixturify-project": "^2.1.1",

packages/checkup-plugin-javascript/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "checkup-plugin-javascript",
3-
"version": "2.0.2",
3+
"version": "2.0.3",
44
"description": "A checkup plugin for Javascript project tasks",
55
"keywords": [
66
"checkup-plugin"
@@ -25,7 +25,7 @@
2525
"dependencies": {
2626
"@babel/eslint-parser": "^7.17.0",
2727
"@babel/parser": "^7.18.0",
28-
"@checkup/core": "^2.0.2",
28+
"@checkup/core": "^2.0.3",
2929
"ember-template-recast": "^5.0.3",
3030
"npm-check": "^5.9.2",
3131
"recast": "^0.20.5",
@@ -34,8 +34,8 @@
3434
"tslib": "^2"
3535
},
3636
"devDependencies": {
37-
"@checkup/plugin": "^2.0.2",
38-
"@checkup/test-helpers": "^2.0.2",
37+
"@checkup/plugin": "^2.0.3",
38+
"@checkup/test-helpers": "^2.0.3",
3939
"@types/semver": "^7.3.9",
4040
"fixturify-project": "^2.1.1",
4141
"rimraf": "^3.0.2"

packages/cli/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@checkup/cli",
3-
"version": "2.0.2",
3+
"version": "2.0.3",
44
"description": "A health checkup for your project",
55
"keywords": [
66
"checkup"
@@ -30,8 +30,8 @@
3030
"@babel/parser": "^7.18.0",
3131
"@babel/traverse": "^7.13.17",
3232
"@babel/types": "7.18.8",
33-
"@checkup/core": "2.0.2",
34-
"@checkup/ui": "2.0.2",
33+
"@checkup/core": "2.0.3",
34+
"@checkup/ui": "2.0.3",
3535
"chalk": "^4.0.0",
3636
"clean-stack": "^4.2.0",
3737
"convert-hrtime": "^3.0.0",
@@ -61,7 +61,7 @@
6161
"yeoman-generator": "^5.4.2"
6262
},
6363
"devDependencies": {
64-
"@checkup/test-helpers": "2.0.2",
64+
"@checkup/test-helpers": "2.0.3",
6565
"execa": "^5.0.0",
6666
"yeoman-test": "^6.3.0"
6767
},

packages/core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@checkup/core",
3-
"version": "2.0.2",
3+
"version": "2.0.3",
44
"description": "Checkup's core library",
55
"homepage": "https://github.com/checkupjs/checkup",
66
"bugs": "https://github.com/checkupjs/checkup/issues",

packages/plugin/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@checkup/plugin",
3-
"version": "2.0.2",
3+
"version": "2.0.3",
44
"description": "Checkup plugin utility library",
55
"homepage": "https://github.com/checkupjs/checkup",
66
"bugs": "https://github.com/checkupjs/checkup/issues",
@@ -24,7 +24,7 @@
2424
"dependencies": {
2525
"@babel/traverse": "^7.13.17",
2626
"@babel/types": "7.18.8",
27-
"@checkup/core": "^2.0.2",
27+
"@checkup/core": "^2.0.3",
2828
"fs-extra": "^9.1.0",
2929
"recast": "^0.20.5"
3030
},

packages/test-helpers/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@checkup/test-helpers",
3-
"version": "2.0.2",
3+
"version": "2.0.3",
44
"description": "Checkup's test helper library",
55
"homepage": "https://github.com/checkupjs/checkup",
66
"bugs": "https://github.com/checkupjs/checkup/issues",
@@ -19,7 +19,7 @@
1919
"test": "echo \"No tests\""
2020
},
2121
"dependencies": {
22-
"@checkup/core": "2.0.2",
22+
"@checkup/core": "2.0.3",
2323
"fixturify-project": "^2.1.1",
2424
"fs-extra": "^10.1.0",
2525
"handlebars": "^4.7.7",

packages/ui/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@checkup/ui",
3-
"version": "2.0.2",
3+
"version": "2.0.3",
44
"description": "Checkup ui library",
55
"bugs": "https://github.com/checkupjs/checkup/issues",
66
"repository": "https://github.com/checkupjs/checkup",
@@ -13,7 +13,7 @@
1313
"test": "vitest run"
1414
},
1515
"dependencies": {
16-
"@checkup/core": "2.0.2",
16+
"@checkup/core": "2.0.3",
1717
"@types/react": "^17.0.15",
1818
"chalk": "^4.0.0",
1919
"events": "^3.3.0",

0 commit comments

Comments
 (0)