Skip to content

Commit

Permalink
Release 0.0.8
Browse files Browse the repository at this point in the history
  • Loading branch information
scalvert committed Apr 21, 2020
1 parent 1741100 commit b7a41f7
Show file tree
Hide file tree
Showing 6 changed files with 56 additions and 11 deletions.
45 changes: 45 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,48 @@
## v0.0.8 (2020-04-21)

#### :boom: Breaking Change
* `checkup-plugin-ember-octane`, `cli`, `plugin-ember-octane`, `plugin-ember`
* [#278](https://github.com/checkupjs/checkup/pull/278) Renaming plugins to `checkup-*` ([@scalvert](https://github.com/scalvert))

#### :rocket: Enhancement
* `cli`
* [#283](https://github.com/checkupjs/checkup/pull/283) Updating plugin generator to standardize plugin naming ([@scalvert](https://github.com/scalvert))
* `cli`, `core`
* [#280](https://github.com/checkupjs/checkup/pull/280) Cleanup of config generator ([@scalvert](https://github.com/scalvert))

#### :bug: Bug Fix
* `cli`
* [#295](https://github.com/checkupjs/checkup/pull/295) Moving static external libraries out of src ([@carakessler](https://github.com/carakessler))
* `checkup-plugin-ember`, `cli`
* [#294](https://github.com/checkupjs/checkup/pull/294) Fixing misnamed packages ([@scalvert](https://github.com/scalvert))

#### :memo: Documentation
* `cli`
* [#268](https://github.com/checkupjs/checkup/pull/268) Cleaning up documentation ([@scalvert](https://github.com/scalvert))

#### :house: Internal
* `checkup-plugin-ember`, `cli`, `core`
* [#292](https://github.com/checkupjs/checkup/pull/292) Backporting table tasks to return table data ([@carakessler](https://github.com/carakessler))
* `checkup-plugin-ember-octane`, `checkup-plugin-ember`, `cli`, `core`, `test-helpers`
* [#293](https://github.com/checkupjs/checkup/pull/293) Removing all relics of node 10 ([@carakessler](https://github.com/carakessler))
* `checkup-plugin-ember-octane`, `cli`, `core`, `plugin-ember`
* [#281](https://github.com/checkupjs/checkup/pull/281) Modifying pdf hook to return array of values ([@carakessler](https://github.com/carakessler))
* [#277](https://github.com/checkupjs/checkup/pull/277) Splitting out pdf results into sections ([@carakessler](https://github.com/carakessler))
* Other
* [#282](https://github.com/checkupjs/checkup/pull/282) Removing node 10 from our CI test flow ([@carakessler](https://github.com/carakessler))
* `cli`
* [#276](https://github.com/checkupjs/checkup/pull/276) Cleaning up types in run command ([@scalvert](https://github.com/scalvert))
* [#266](https://github.com/checkupjs/checkup/pull/266) Displaying results from meta tasks in the pdf ([@carakessler](https://github.com/carakessler))
* [#267](https://github.com/checkupjs/checkup/pull/267) Adding tests for meta-task-list ([@scalvert](https://github.com/scalvert))
* `checkup-plugin-ember-octane`, `cli`, `plugin-ember-octane`, `plugin-ember`
* [#278](https://github.com/checkupjs/checkup/pull/278) Renaming plugins to `checkup-*` ([@scalvert](https://github.com/scalvert))

#### Committers: 3
- Steve Calvert ([@scalvert](https://github.com/scalvert))
- [@carakessler](https://github.com/carakessler)
- [@dependabot-preview[bot]](https://github.com/apps/dependabot-preview)


## v0.0.7 (2020-04-16)

#### :rocket: Enhancement
Expand Down
4 changes: 2 additions & 2 deletions packages/checkup-plugin-ember-octane/package.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{
"name": "checkup-plugin-ember-octane",
"description": "An oclif plugin for Ember Octane migration tasks",
"version": "0.0.7",
"version": "0.0.8",
"author": "Lewis Miller @lbdm44",
"bugs": "https://github.com/checkupjs/checkup/issues",
"dependencies": {
"@checkup/core": "0.0.7",
"@checkup/core": "0.0.8",
"@oclif/command": "^1",
"@oclif/config": "^1",
"babel-eslint": "^10.1.0",
Expand Down
6 changes: 3 additions & 3 deletions packages/checkup-plugin-ember/package.json
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
{
"name": "checkup-plugin-ember",
"description": "An oclif plugin for Ember project tasks",
"version": "0.0.7",
"version": "0.0.8",
"author": "Steve Calvert @scalvert",
"bugs": "https://github.com/checkupjs/checkup/issues",
"dependencies": {
"@checkup/core": "0.0.7",
"@checkup/core": "0.0.8",
"@oclif/command": "^1",
"@oclif/config": "^1",
"tslib": "^1"
},
"devDependencies": {
"@checkup/test-helpers": "0.0.7",
"@checkup/test-helpers": "0.0.8",
"@oclif/dev-cli": "^1",
"fixturify-project": "^2.1.0",
"rimraf": "^3.0.2"
Expand Down
6 changes: 3 additions & 3 deletions packages/cli/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@checkup/cli",
"description": "A CLI that provides health check information about your project.",
"version": "0.0.7",
"version": "0.0.8",
"author": "Steve Calvert <[email protected]>",
"bin": {
"checkup": "./bin/run"
Expand All @@ -10,7 +10,7 @@
"dependencies": {
"@babel/traverse": "^7.9.5",
"@babel/types": "7.9.5",
"@checkup/core": "0.0.7",
"@checkup/core": "0.0.8",
"@checkup/plugin-ember": "0.0.7",
"@checkup/plugin-ember-octane": "0.0.7",
"@oclif/command": "^1",
Expand All @@ -34,7 +34,7 @@
"yeoman-generator": "^4.8.0"
},
"devDependencies": {
"@checkup/test-helpers": "0.0.7",
"@checkup/test-helpers": "0.0.8",
"@oclif/dev-cli": "^1",
"@oclif/test": "^1",
"@types/yeoman-environment": "^2.3.3",
Expand Down
2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@checkup/core",
"description": "Checkup's core library",
"version": "0.0.7",
"version": "0.0.8",
"author": "Steve Calvert <[email protected]>",
"bugs": "https://github.com/checkupjs/checkup/issues",
"dependencies": {
Expand Down
4 changes: 2 additions & 2 deletions packages/test-helpers/package.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{
"name": "@checkup/test-helpers",
"description": "Checkup's test helper library",
"version": "0.0.7",
"version": "0.0.8",
"author": "Steve Calvert <[email protected]>",
"bugs": "https://github.com/checkupjs/checkup/issues",
"dependencies": {
"@checkup/core": "0.0.7",
"@checkup/core": "0.0.8",
"fixturify-project": "^2.1.0",
"handlebars": "^4.7.6",
"stdout-stderr": "^0.1.13",
Expand Down

0 comments on commit b7a41f7

Please sign in to comment.