Skip to content

Commit

Permalink
Release 3.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
scalvert committed Jun 27, 2023
1 parent 5fa07b2 commit eba02b9
Show file tree
Hide file tree
Showing 9 changed files with 34 additions and 20 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,20 @@




## v3.0.1 (2023-06-27)

#### :bug: Bug Fix
* `checkup-plugin-javascript`
* [#1352](https://github.com/checkupjs/checkup/pull/1352) Update eslint-disable-task to disregard *.d.ts files and use recast typescript parser ([@chrisrng](https://github.com/chrisrng))
* [#1350](https://github.com/checkupjs/checkup/pull/1350) Update eslint-summary-task to disregard *.d.ts files ([@chrisrng](https://github.com/chrisrng))
* `checkup-plugin-ember`
* [#1351](https://github.com/checkupjs/checkup/pull/1351) Update ember-template-lint-summary-task and ember-octane-migration-status-task to disregard *.d.ts files ([@chrisrng](https://github.com/chrisrng))

#### Committers: 1
- Chris Ng ([@chrisrng](https://github.com/chrisrng))


## v3.0.0 (2023-06-20)

#### :boom: Breaking Change
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "checkup",
"version": "3.0.0",
"version": "3.0.1",
"private": true,
"repository": "https://github.com/checkupjs/checkup.git",
"license": "MIT",
Expand Down
8 changes: 4 additions & 4 deletions packages/checkup-plugin-ember/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "checkup-plugin-ember",
"version": "3.0.0",
"version": "3.0.1",
"description": "A checkup plugin for Ember project tasks",
"keywords": [
"checkup-plugin"
Expand Down Expand Up @@ -28,7 +28,7 @@
"@babel/parser": "^7.18.0",
"@babel/traverse": "^7.14.2",
"@babel/types": "7.18.8",
"@checkup/core": "^3.0.0",
"@checkup/core": "^3.0.1",
"debug": "^4.3.1",
"ember-template-recast": "^6.1.3",
"eslint-plugin-ember": "^10.6.1",
Expand All @@ -37,8 +37,8 @@
"tslib": "^2"
},
"devDependencies": {
"@checkup/plugin": "^3.0.0",
"@checkup/test-helpers": "^3.0.0",
"@checkup/plugin": "^3.0.1",
"@checkup/test-helpers": "^3.0.1",
"@types/lodash.kebabcase": "^4.1.7",
"eslint": "^8.22.0",
"fixturify-project": "^2.1.1",
Expand Down
8 changes: 4 additions & 4 deletions packages/checkup-plugin-javascript/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "checkup-plugin-javascript",
"version": "3.0.0",
"version": "3.0.1",
"description": "A checkup plugin for Javascript project tasks",
"keywords": [
"checkup-plugin"
Expand All @@ -25,7 +25,7 @@
"dependencies": {
"@babel/eslint-parser": "^7.17.0",
"@babel/parser": "^7.18.0",
"@checkup/core": "^3.0.0",
"@checkup/core": "^3.0.1",
"ember-template-recast": "^6.1.3",
"npm-check": "^6.0.1",
"recast": "^0.20.5",
Expand All @@ -34,8 +34,8 @@
"tslib": "^2"
},
"devDependencies": {
"@checkup/plugin": "^3.0.0",
"@checkup/test-helpers": "^3.0.0",
"@checkup/plugin": "^3.0.1",
"@checkup/test-helpers": "^3.0.1",
"@types/semver": "^7.3.9",
"fixturify-project": "^2.1.1",
"rimraf": "^3.0.2"
Expand Down
8 changes: 4 additions & 4 deletions packages/cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@checkup/cli",
"version": "3.0.0",
"version": "3.0.1",
"description": "A health checkup for your project",
"keywords": [
"checkup"
Expand Down Expand Up @@ -30,8 +30,8 @@
"@babel/parser": "^7.18.0",
"@babel/traverse": "^7.13.17",
"@babel/types": "7.18.8",
"@checkup/core": "3.0.0",
"@checkup/ui": "3.0.0",
"@checkup/core": "3.0.1",
"@checkup/ui": "3.0.1",
"chalk": "^4.0.0",
"clean-stack": "^4.2.0",
"convert-hrtime": "^3.0.0",
Expand Down Expand Up @@ -60,7 +60,7 @@
"yeoman-generator": "^5.4.2"
},
"devDependencies": {
"@checkup/test-helpers": "3.0.0",
"@checkup/test-helpers": "3.0.1",
"execa": "^5.0.0",
"yeoman-test": "^6.3.0"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@checkup/core",
"version": "3.0.0",
"version": "3.0.1",
"description": "Checkup's core library",
"homepage": "https://github.com/checkupjs/checkup",
"bugs": "https://github.com/checkupjs/checkup/issues",
Expand Down
4 changes: 2 additions & 2 deletions packages/plugin/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@checkup/plugin",
"version": "3.0.0",
"version": "3.0.1",
"description": "Checkup plugin utility library",
"homepage": "https://github.com/checkupjs/checkup",
"bugs": "https://github.com/checkupjs/checkup/issues",
Expand All @@ -24,7 +24,7 @@
"dependencies": {
"@babel/traverse": "^7.13.17",
"@babel/types": "7.18.8",
"@checkup/core": "^3.0.0",
"@checkup/core": "^3.0.1",
"fs-extra": "^9.1.0",
"recast": "^0.20.5"
},
Expand Down
4 changes: 2 additions & 2 deletions packages/test-helpers/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@checkup/test-helpers",
"version": "3.0.0",
"version": "3.0.1",
"description": "Checkup's test helper library",
"homepage": "https://github.com/checkupjs/checkup",
"bugs": "https://github.com/checkupjs/checkup/issues",
Expand All @@ -19,7 +19,7 @@
"test": "echo \"No tests\""
},
"dependencies": {
"@checkup/core": "3.0.0",
"@checkup/core": "3.0.1",
"fixturify-project": "^2.1.1",
"fs-extra": "^10.1.0",
"handlebars": "^4.7.7",
Expand Down
4 changes: 2 additions & 2 deletions packages/ui/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@checkup/ui",
"version": "3.0.0",
"version": "3.0.1",
"description": "Checkup ui library",
"bugs": "https://github.com/checkupjs/checkup/issues",
"repository": "https://github.com/checkupjs/checkup",
Expand All @@ -13,7 +13,7 @@
"test": "vitest run"
},
"dependencies": {
"@checkup/core": "3.0.0",
"@checkup/core": "3.0.1",
"@types/react": "^17.0.15",
"chalk": "^4.0.0",
"events": "^3.3.0",
Expand Down

0 comments on commit eba02b9

Please sign in to comment.