From 70f0b27894f6914ed813a044d5b364af1c9295c9 Mon Sep 17 00:00:00 2001 From: Willie Ruemmele Date: Wed, 22 Feb 2023 11:04:04 -0700 Subject: [PATCH 1/2] feat: create symlinks from binAliases to bin for pack:macos (#1109) * feat: create symlinks from binAliases to bin for pack:macos * chore: bump oclif/core --- .gitignore | 1 + package.json | 4 +-- src/commands/pack/macos.ts | 12 ++++++--- yarn.lock | 50 ++++++++++++++++++++++++++++++++------ 4 files changed, 53 insertions(+), 14 deletions(-) diff --git a/.gitignore b/.gitignore index 6865c2117..d42fefaab 100644 --- a/.gitignore +++ b/.gitignore @@ -10,3 +10,4 @@ /test/tmp package-lock.json **/.DS_Store +/.idea diff --git a/package.json b/package.json index 6a9b40295..ddc2f900a 100644 --- a/package.json +++ b/package.json @@ -8,7 +8,7 @@ }, "bugs": "https://github.com/oclif/oclif/issues", "dependencies": { - "@oclif/core": "^2.0.3", + "@oclif/core": "^2.3.0", "@oclif/plugin-help": "^5.1.19", "@oclif/plugin-not-found": "^2.3.7", "@oclif/plugin-warn-if-update-available": "^2.0.14", @@ -141,4 +141,4 @@ "registry": "https://registry.npmjs.org" }, "types": "lib/index.d.ts" -} \ No newline at end of file +} diff --git a/src/commands/pack/macos.ts b/src/commands/pack/macos.ts index 975c321e4..879973c7b 100644 --- a/src/commands/pack/macos.ts +++ b/src/commands/pack/macos.ts @@ -2,13 +2,13 @@ import * as path from 'path' import * as _ from 'lodash' import * as fs from 'fs-extra' -import {Command, Flags} from '@oclif/core' -import {Interfaces} from '@oclif/core' +import {Command, Flags, Interfaces} from '@oclif/core' import * as Tarballs from '../../tarballs' import {templateShortKey} from '../../upload-util' import {exec as execSync} from 'child_process' import {promisify} from 'node:util' +import * as os from 'os' const exec = promisify(execSync) type OclifConfig = { @@ -33,11 +33,13 @@ sudo rm -rf /usr/local/bin/${config.bin} ${additionalCLI ? `sudo rm -rf /usr/local/${additionalCLI} sudo rm -rf /usr/local/bin/${additionalCLI}` : ''} +${config.binAliases ? config.binAliases.map(alias => `sudo rm -rf /usr/local/bin/${alias}`).join(os.EOL) : ''} `, postinstall: (config: Interfaces.Config, additionalCLI: string | undefined) => `#!/usr/bin/env bash set -x sudo mkdir -p /usr/local/bin sudo ln -sf /usr/local/lib/${config.dirname}/bin/${config.bin} /usr/local/bin/${config.bin} +${config.binAliases ? config.binAliases?.map(alias => `sudo ln -sf /usr/local/lib/${config.dirname}/bin/${config.bin} /usr/local/bin/${alias}`).join(os.EOL) : ''} ${additionalCLI ? `sudo ln -sf /usr/local/lib/${config.dirname}/bin/${additionalCLI} /usr/local/bin/${additionalCLI}` : ''} `, uninstall: (config: Interfaces.Config, additionalCLI: string | undefined) => { @@ -79,6 +81,8 @@ while [ "$1" != "-y" ]; do done echo "Application uninstalling process started" +# remove bin aliases link +${config.binAliases ? config.binAliases.map(alias => `find "/usr/local/bin/" -name "${alias}" | xargs rm`).join(os.EOL) : ''} # remove link to shortcut file find "/usr/local/bin/" -name "${config.bin}" | xargs rm ${additionalCLI ? `find "/usr/local/bin/" -name "${additionalCLI}" | xargs rm` : ''} @@ -93,9 +97,9 @@ fi pkgutil --forget "${packageIdentifier}" > /dev/null 2>&1 if [ $? -eq 0 ] then - echo "[2/3] [DONE] Successfully deleted application informations" + echo "[2/3] [DONE] Successfully deleted application information" else - echo "[2/3] [ERROR] Could not delete application informations" >&2 + echo "[2/3] [ERROR] Could not delete application information" >&2 fi #remove application source distribution diff --git a/yarn.lock b/yarn.lock index 72b8c4455..c2772febf 100644 --- a/yarn.lock +++ b/yarn.lock @@ -560,10 +560,10 @@ wordwrap "^1.0.0" wrap-ansi "^7.0.0" -"@oclif/core@^2.0.3": - version "2.0.3" - resolved "https://registry.yarnpkg.com/@oclif/core/-/core-2.0.3.tgz#ce71efbfc6e4c2655579ce81adce6471be2bc799" - integrity sha512-Dr6tghg32KKEivcWYqrx9bgC8FDE4i47FLR1wjnLg3jNJWf+blTYorj6aHize2WF0wiwkvB28Cr5TUNBooB4AQ== +"@oclif/core@^2.3.0": + version "2.3.0" + resolved "https://registry.yarnpkg.com/@oclif/core/-/core-2.3.0.tgz#f63071a8116118ae02e457ac1d28a7649904aecf" + integrity sha512-xA53NIZDqz9nuxyCMA5Pz5b1RSgyTNWbtOdwbUJeZa/ajtVrVO9yA8k/4vJRsffUuLyP8tNbh4cH3DDZKwIFnw== dependencies: "@types/cli-progress" "^3.11.0" ansi-escapes "^4.3.2" @@ -571,9 +571,9 @@ cardinal "^2.1.1" chalk "^4.1.2" clean-stack "^3.0.1" - cli-progress "^3.10.0" + cli-progress "^3.11.2" debug "^4.3.4" - ejs "^3.1.6" + ejs "^3.1.8" fs-extra "^9.1.0" get-package-type "^0.1.0" globby "^11.1.0" @@ -589,7 +589,7 @@ strip-ansi "^6.0.1" supports-color "^8.1.1" supports-hyperlinks "^2.2.0" - tslib "^2.4.1" + tslib "^2.5.0" widest-line "^3.1.0" wordwrap "^1.0.0" wrap-ansi "^7.0.0" @@ -1396,6 +1396,11 @@ async@0.9.x: resolved "https://registry.yarnpkg.com/async/-/async-0.9.2.tgz#aea74d5e61c1f899613bf64bda66d4c78f2fd17d" integrity sha1-rqdNXmHB+JlhO/ZL2mbUx48v0X0= +async@^3.2.3: + version "3.2.4" + resolved "https://registry.yarnpkg.com/async/-/async-3.2.4.tgz#2d22e00f8cddeb5fde5dd33522b56d1cf569a81c" + integrity sha512-iAB+JbDEGXhyIUavoDl9WP/Jj106Kz9DEn1DPgYw5ruDn0e3Wgi3sKFm55sASdGBNOQB8F59d9qQ7deqrHA8wQ== + at-least-node@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/at-least-node/-/at-least-node-1.0.0.tgz#602cd4b46e844ad4effc92a8011a3c46e0238dc2" @@ -1681,7 +1686,7 @@ chalk@^3.0.0: ansi-styles "^4.1.0" supports-color "^7.1.0" -chalk@^4.0.0, chalk@^4.1.0, chalk@^4.1.1, chalk@^4.1.2: +chalk@^4.0.0, chalk@^4.0.2, chalk@^4.1.0, chalk@^4.1.1, chalk@^4.1.2: version "4.1.2" resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.2.tgz#aac4e2b7734a740867aeb16bf02aad556a1e7a01" integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA== @@ -1762,6 +1767,13 @@ cli-progress@^3.10.0: dependencies: string-width "^4.2.0" +cli-progress@^3.11.2: + version "3.12.0" + resolved "https://registry.yarnpkg.com/cli-progress/-/cli-progress-3.12.0.tgz#807ee14b66bcc086258e444ad0f19e7d42577942" + integrity sha512-tRkV3HJ1ASwm19THiiLIXLO7Im7wlTuKnvkYaTkyoAPefqjNg7W7DHKUlGRxy9vxDvbyCYQkQozvptuMkGCg8A== + dependencies: + string-width "^4.2.3" + cli-spinners@^2.5.0: version "2.6.1" resolved "https://registry.npmjs.org/cli-spinners/-/cli-spinners-2.6.1.tgz#adc954ebe281c37a6319bfa401e6dd2488ffb70d" @@ -2357,6 +2369,13 @@ ejs@^3.1.6: dependencies: jake "^10.6.1" +ejs@^3.1.8: + version "3.1.8" + resolved "https://registry.yarnpkg.com/ejs/-/ejs-3.1.8.tgz#758d32910c78047585c7ef1f92f9ee041c1c190b" + integrity sha512-/sXZeMlhS0ArkfX2Aw780gJzXSMPnKjtspYZv+f3NiKLlubezAHDU5+9xz6gd3/NhG3txQCo6xlglmTS+oTGEQ== + dependencies: + jake "^10.8.5" + electron-to-chromium@^1.3.886: version "1.3.894" resolved "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.894.tgz#54554ecb40d40ddac7241c4a42887e86180015d8" @@ -3864,6 +3883,16 @@ jake@^10.6.1: filelist "^1.0.1" minimatch "^3.0.4" +jake@^10.8.5: + version "10.8.5" + resolved "https://registry.yarnpkg.com/jake/-/jake-10.8.5.tgz#f2183d2c59382cb274226034543b9c03b8164c46" + integrity sha512-sVpxYeuAhWt0OTWITwT98oyV0GsXyMlXCF+3L1SuafBVUIr/uILGRB+NqwkzhgXKvoJpDIpQvqkUALgdmQsQxw== + dependencies: + async "^3.2.3" + chalk "^4.0.2" + filelist "^1.0.1" + minimatch "^3.0.4" + jmespath@0.16.0: version "0.16.0" resolved "https://registry.yarnpkg.com/jmespath/-/jmespath-0.16.0.tgz#b15b0a85dfd4d930d43e69ed605943c802785076" @@ -6175,6 +6204,11 @@ tslib@^2, tslib@^2.0.0, tslib@^2.1.0, tslib@^2.3.1, tslib@^2.4.1: resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.4.1.tgz#0d0bfbaac2880b91e22df0768e55be9753a5b17e" integrity sha512-tGyy4dAjRIEwI7BzsB0lynWgOpfqjUdq91XXAlIWD2OwKBH7oCl/GZG/HT4BOHrTlPMOASlMQ7veyTqpmRcrNA== +tslib@^2.5.0: + version "2.5.0" + resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.5.0.tgz#42bfed86f5787aeb41d031866c8f402429e0fddf" + integrity sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg== + tsutils@^3.21.0: version "3.21.0" resolved "https://registry.npmjs.org/tsutils/-/tsutils-3.21.0.tgz#b48717d394cea6c1e096983eed58e9d61715b623" From 10554bd2a97ef778610f938bc32b46574fac9c04 Mon Sep 17 00:00:00 2001 From: svc-cli-bot Date: Wed, 22 Feb 2023 18:04:29 +0000 Subject: [PATCH 2/2] chore(release): 3.7.0 [skip ci] --- CHANGELOG.md | 3508 ++++++++++++++++++++++++++++++-------------------- package.json | 4 +- 2 files changed, 2111 insertions(+), 1401 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b18ffdec7..805f636a2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,2819 +1,3529 @@ -# Changelog +# [3.7.0](https://github.com/oclif/oclif/compare/3.6.5...3.7.0) (2023-02-22) -All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. -### [3.2.2](https://github.com/oclif/oclif/compare/v3.2.1...v3.2.2) (2022-09-16) - -### [3.2.1](https://github.com/oclif/oclif/compare/v3.2.0...v3.2.1) (2022-09-09) - - -### Bug Fixes +### Features -* bump oclif/core ([21aa0d7](https://github.com/oclif/oclif/commit/21aa0d754f0afe5a2e9f25cd1c32266ef2b9ac2d)) +* create symlinks from binAliases to bin for pack:macos ([#1109](https://github.com/oclif/oclif/issues/1109)) ([70f0b27](https://github.com/oclif/oclif/commit/70f0b27894f6914ed813a044d5b364af1c9295c9)) -## [3.2.0](https://github.com/oclif/oclif/compare/v3.1.2...v3.2.0) (2022-09-06) -### Features +## [3.6.5](https://github.com/oclif/oclif/compare/3.6.4...3.6.5) (2023-02-15) -* add `--aliases` flag for readme command ([#925](https://github.com/oclif/oclif/issues/925)) ([#952](https://github.com/oclif/oclif/issues/952)) ([5bf2b5a](https://github.com/oclif/oclif/commit/5bf2b5a51210d554a1768d69fbf93c9c6f6b2b2a)) -### [3.1.2](https://github.com/oclif/oclif/compare/v3.1.1...v3.1.2) (2022-07-27) +### Bug Fixes +* explicitly ask for latest from npm ([#1107](https://github.com/oclif/oclif/issues/1107)) ([7991005](https://github.com/oclif/oclif/commit/7991005402143079cde1ab36c91074a82f757a34)) -### Bug Fixes -* await yeoman generators ([#926](https://github.com/oclif/oclif/issues/926)) ([da5a4d2](https://github.com/oclif/oclif/commit/da5a4d202be114fe7f0c00d2737a9faf8f4e19ab)) -### [3.1.1](https://github.com/oclif/oclif/compare/v3.1.0...v3.1.1) (2022-07-15) +## [3.6.4](https://github.com/oclif/oclif/compare/3.6.3...3.6.4) (2023-02-14) ### Bug Fixes -* readme for single command cli ([#916](https://github.com/oclif/oclif/issues/916)) ([242b34f](https://github.com/oclif/oclif/commit/242b34f62656b2c6ee8a1d0ecda8d98f8c1c5bbc)) +* check if oclif section exists ([#1105](https://github.com/oclif/oclif/issues/1105)) ([d296847](https://github.com/oclif/oclif/commit/d296847bd061bd4845370eebca51b202f8220848)) -## [3.1.0](https://github.com/oclif/oclif/compare/v3.0.1...v3.1.0) (2022-07-07) -### Features +## [3.6.3](https://github.com/oclif/oclif/compare/3.6.2...3.6.3) (2023-02-06) -* build/pack in parallel ([#914](https://github.com/oclif/oclif/issues/914)) ([d86c722](https://github.com/oclif/oclif/commit/d86c722d8de66560c672c2fbdb338cc9a024caa2)) -### [3.0.1](https://github.com/oclif/oclif/compare/v3.0.0...v3.0.1) (2022-04-18) +### Bug Fixes +* command template ([#1101](https://github.com/oclif/oclif/issues/1101)) ([80670ef](https://github.com/oclif/oclif/commit/80670ef315e59b8d8b07e062b494796cb8c22538)) -### Bug Fixes -* remove outdated code ([#866](https://github.com/oclif/oclif/issues/866)) ([e3f60a3](https://github.com/oclif/oclif/commit/e3f60a3109502bc59d1fbd71a3fbbd3668dcd3eb)) -## [3.0.0](https://github.com/oclif/oclif/compare/v2.6.3...v3.0.0) (2022-04-13) +## [3.6.2](https://github.com/oclif/oclif/compare/3.6.1...3.6.2) (2023-02-01) -### ⚠ BREAKING CHANGES +### Bug Fixes -* Add arch to macos pkg file (#849) +* workaround wireit ([#1092](https://github.com/oclif/oclif/issues/1092)) ([44d9f69](https://github.com/oclif/oclif/commit/44d9f6978ce96e3d40ceba7b3215c36197b63519)) -### Features -* Add arch to macos pkg file ([#849](https://github.com/oclif/oclif/issues/849)) ([656d529](https://github.com/oclif/oclif/commit/656d52909c0ae1c4b66b7b3eaada9916d5871e4a)) -### [2.6.3](https://github.com/oclif/oclif/compare/v2.6.2...v2.6.3) (2022-03-31) +## [3.6.1](https://github.com/oclif/oclif/compare/3.6.0...3.6.1) (2023-01-23) ### Bug Fixes -* update oclif/core ([7e86036](https://github.com/oclif/oclif/commit/7e86036b4e673003ad6226852260c929d62a1c39)) - -### [2.6.2](https://github.com/oclif/oclif/compare/v2.6.1...v2.6.2) (2022-03-31) +* bump core ([b56ba9e](https://github.com/oclif/oclif/commit/b56ba9e16293b4224bc264d7d144941f694b94a1)) -### Bug Fixes -* revert building mac m1 packages, wait for PR [#849](https://github.com/oclif/oclif/issues/849) ([#855](https://github.com/oclif/oclif/issues/855)) ([e5b68af](https://github.com/oclif/oclif/commit/e5b68af8510b0419ec48d76087ed0bec61fc81ad)) +# [3.6.0](https://github.com/oclif/oclif/compare/3.5.0...3.6.0) (2023-01-19) -### [2.6.1](https://github.com/oclif/oclif/compare/v2.6.0...v2.6.1) (2022-03-23) -## [2.6.0](https://github.com/oclif/oclif/compare/v2.5.0...v2.6.0) (2022-03-14) +### Features +* support JIT plugins ([#1009](https://github.com/oclif/oclif/issues/1009)) ([b713b9d](https://github.com/oclif/oclif/commit/b713b9dc52f34f5b1c92d8d19c541d2ad785c872)) -### Features -* Add support to build darwin-arm64 for `oclif pack macos` ([#847](https://github.com/oclif/oclif/issues/847)) ([61a96c2](https://github.com/oclif/oclif/commit/61a96c2a1c435f5abce8c2348cf7756a4b997269)) -## [2.5.0](https://github.com/oclif/oclif/compare/v2.4.5...v2.5.0) (2022-02-24) +# [3.5.0](https://github.com/oclif/oclif/compare/3.4.6...3.5.0) (2023-01-18) ### Features -* remove all relevant directories on uninstall ([#831](https://github.com/oclif/oclif/issues/831)) ([acd986d](https://github.com/oclif/oclif/commit/acd986d53681b3840f17220b6e16fd8bb3c869f7)) - -### [2.4.5](https://github.com/oclif/oclif/compare/v2.4.4...v2.4.5) (2022-02-17) +* use oclif/core v2 ([#1081](https://github.com/oclif/oclif/issues/1081)) ([d8352ff](https://github.com/oclif/oclif/commit/d8352ffe6bfcdfca7c0021ef53b8a8e38477cae7)) -### [2.4.4](https://github.com/oclif/oclif/compare/v2.4.3...v2.4.4) (2022-02-09) -### Bug Fixes +## [3.4.6](https://github.com/oclif/oclif/compare/3.4.5...3.4.6) (2023-01-18) -* fix tarball packing in paths with spaces ([#825](https://github.com/oclif/oclif/issues/825)) ([#826](https://github.com/oclif/oclif/issues/826)) ([9e12c70](https://github.com/oclif/oclif/commit/9e12c70be6c85a9de7fff991e2c2d6574fd6173d)) -### [2.4.3](https://github.com/oclif/oclif/compare/v2.4.2...v2.4.3) (2022-02-01) +### Bug Fixes +* forwards compatibility ([dac9e15](https://github.com/oclif/oclif/commit/dac9e150f3a7bc7e473fd6e0cb82940691d1be63)) -### Bug Fixes -* remove dependency on nps-utils ([#822](https://github.com/oclif/oclif/issues/822)) ([5c01f53](https://github.com/oclif/oclif/commit/5c01f53930ce56a476ba1f8abd1208cbc5b91dc2)) -### [2.4.2](https://github.com/oclif/oclif/compare/v2.4.1...v2.4.2) (2022-02-01) +## [3.4.5](https://github.com/oclif/oclif/compare/3.4.4...3.4.5) (2023-01-18) ### Bug Fixes -* remove IManifest ([#823](https://github.com/oclif/oclif/issues/823)) ([31f1f07](https://github.com/oclif/oclif/commit/31f1f07480d4f59db45da35ff0926bc44665cc6f)) +* args forwards compatibility ([5a9d636](https://github.com/oclif/oclif/commit/5a9d6360c58c1968e82aa6d9ff27227367701f79)) -### [2.4.1](https://github.com/oclif/oclif/compare/v2.4.0...v2.4.1) (2022-01-31) -### Bug Fixes +## [3.4.4](https://github.com/oclif/oclif/compare/3.4.3...3.4.4) (2023-01-18) -* update error messages ([#806](https://github.com/oclif/oclif/issues/806)) ([7a63b49](https://github.com/oclif/oclif/commit/7a63b4987bd8d6e4f2f3211a05248296e5f6d090)) -## [2.4.0](https://github.com/oclif/oclif/compare/v2.3.1...v2.4.0) (2022-01-27) +### Bug Fixes +* bump oclif/core ([f488b16](https://github.com/oclif/oclif/commit/f488b1693d8ae0ee1529f3d25797375dd0f2d3aa)) -### Features -* remove cli-ux ([#804](https://github.com/oclif/oclif/issues/804)) ([fd9d1fb](https://github.com/oclif/oclif/commit/fd9d1fb5672df197c559c6044d51797ad6fe7ffd)) -### [2.3.1](https://github.com/oclif/oclif/compare/v2.3.0...v2.3.1) (2022-01-27) +## [3.4.3](https://github.com/oclif/oclif/compare/3.4.2...3.4.3) (2022-12-27) ### Bug Fixes -* remove accidental dep ([8e5435f](https://github.com/oclif/oclif/commit/8e5435fb84febd950be387849f921a76a39f8eb0)) +* make oclif.s3.folder optional for --indexes ([#1063](https://github.com/oclif/oclif/issues/1063)) ([df9db2f](https://github.com/oclif/oclif/commit/df9db2fa2906f5e0322c5e8fd8eddacfecee24ca)) -## [2.3.0](https://github.com/oclif/oclif/compare/v2.2.0...v2.3.0) (2022-01-20) -### Features +## [3.4.2](https://github.com/oclif/oclif/compare/3.4.1...3.4.2) (2022-12-07) -* use yeoman-generator v5 ([#797](https://github.com/oclif/oclif/issues/797)) ([37827bf](https://github.com/oclif/oclif/commit/37827bf258ff8145c98a9c621b853ac6b1020fdb)) -## [2.2.0](https://github.com/oclif/oclif/compare/v2.1.8...v2.2.0) (2022-01-13) +### Bug Fixes +* win pack error ([#1054](https://github.com/oclif/oclif/issues/1054)) ([bc23384](https://github.com/oclif/oclif/commit/bc233845270c4b9a7d61b7c411a369ed65d45886)) -### Features -* optionally include tarball path as input ([#764](https://github.com/oclif/oclif/issues/764)) ([#796](https://github.com/oclif/oclif/issues/796)) ([ee6ff99](https://github.com/oclif/oclif/commit/ee6ff99ad5e11cb1abe1de17791a8b987833e381)) -### [2.1.8](https://github.com/oclif/oclif/compare/v2.1.7...v2.1.8) (2022-01-12) +## [3.4.1](https://github.com/oclif/oclif/compare/3.4.0...3.4.1) (2022-12-05) ### Bug Fixes -* remove unnecessary dependency ([#794](https://github.com/oclif/oclif/issues/794)) ([f814f00](https://github.com/oclif/oclif/commit/f814f009b9b203c8917e265c16015a08af911537)) - -### [2.1.7](https://github.com/oclif/oclif/compare/v2.1.6...v2.1.7) (2022-01-11) +* json output formatting ([#1051](https://github.com/oclif/oclif/issues/1051)) ([25d1513](https://github.com/oclif/oclif/commit/25d15133cc93ce27372e6c90279932b14e4dae39)) -### Bug Fixes -* correct package name ([#792](https://github.com/oclif/oclif/issues/792)) ([7197f98](https://github.com/oclif/oclif/commit/7197f98233d4391e4f322d16ff4a0cc92f7a4a6f)) +# [3.4.0](https://github.com/oclif/oclif/compare/3.3.1...3.4.0) (2022-12-05) -### [2.1.6](https://github.com/oclif/oclif/compare/v2.1.5...v2.1.6) (2022-01-11) +### Features -### Bug Fixes +* remove qq and parallelize build/pack/promote ([#1035](https://github.com/oclif/oclif/issues/1035)) ([db2a858](https://github.com/oclif/oclif/commit/db2a85873de63a9bce0a16f11916f38974ee7494)) -* remove fixpack dependency ([#791](https://github.com/oclif/oclif/issues/791)) ([823300e](https://github.com/oclif/oclif/commit/823300e103bac560fd1e9e8748b33be59a80b066)) -### [2.1.5](https://github.com/oclif/oclif/compare/v2.1.4...v2.1.5) (2022-01-10) -### [2.1.4](https://github.com/oclif/oclif/compare/v2.1.3...v2.1.4) (2022-01-10) +## [3.3.1](https://github.com/oclif/oclif/compare/3.3.0...3.3.1) (2022-12-04) ### Bug Fixes -* bump cli-ux to 6.0.8 ([46d2d8a](https://github.com/oclif/oclif/commit/46d2d8abaf0ba0b4d076e5ac33fa8ca78a528ed6)) +* **deps:** bump concurrently from 7.5.0 to 7.6.0 ([49b301e](https://github.com/oclif/oclif/commit/49b301e5fa9ad726af05f2dab5b273afd89983f8)) -### [2.1.3](https://github.com/oclif/oclif/compare/v2.1.2...v2.1.3) (2022-01-10) -### Bug Fixes +# [3.3.0](https://github.com/oclif/oclif/compare/3.2.31...3.3.0) (2022-11-29) -* bump deps ([154913b](https://github.com/oclif/oclif/commit/154913bd8db4139b9298d78355f889f20dfb23eb)) -### [2.1.2](https://github.com/oclif/oclif/compare/v2.1.1...v2.1.2) (2022-01-08) +### Features +* add 'target' argument when packing/uploading macOS ([#1033](https://github.com/oclif/oclif/issues/1033)) ([fb6473d](https://github.com/oclif/oclif/commit/fb6473d18d29e924384a9cfec4f6caca04ce233c)) -### Bug Fixes -* add override for colors ([8bb26b0](https://github.com/oclif/oclif/commit/8bb26b01859165de8759529f8b61ae28cf25b748)) -### [2.1.1](https://github.com/oclif/oclif/compare/v2.1.0...v2.1.1) (2022-01-08) +## [3.2.31](https://github.com/oclif/oclif/compare/3.2.30...3.2.31) (2022-11-27) ### Bug Fixes -* add resolution for colors ([0ea44d4](https://github.com/oclif/oclif/commit/0ea44d45cffdca54c5294a97725a332f94fb69c2)) +* **deps:** bump github-slugger from 1.4.0 to 1.5.0 ([a41baca](https://github.com/oclif/oclif/commit/a41baca347b3115452ff03aa4d0e603a1454c0cf)) -## [2.1.0](https://github.com/oclif/oclif/compare/v2.0.1...v2.1.0) (2021-12-21) -### Features +## [3.2.30](https://github.com/oclif/oclif/compare/3.2.29...3.2.30) (2022-11-27) -* add version info to registry for windows installers ([#769](https://github.com/oclif/oclif/issues/769)) ([291603a](https://github.com/oclif/oclif/commit/291603a471757596ebed27b0758bae9871fd53b0)) -### [2.0.1](https://github.com/oclif/oclif/compare/v2.0.0-main.19...v2.0.1) (2021-12-08) +### Bug Fixes -## [2.0.0-main.19](https://github.com/oclif/oclif/compare/v2.0.0-main.18...v2.0.0-main.19) (2021-12-08) +* **deps:** bump minimatch from 3.0.4 to 3.1.2 ([dcd7ba2](https://github.com/oclif/oclif/commit/dcd7ba26816e3564d95579f31d3316b4cea8c712)) -### Bug Fixes -* bump deps ([#750](https://github.com/oclif/oclif/issues/750)) ([ffb9b99](https://github.com/oclif/oclif/commit/ffb9b99ba2f53a9049f04d0dfea1a4b4b427dfe0)) +## [3.2.29](https://github.com/oclif/oclif/compare/3.2.28...3.2.29) (2022-11-20) -## [2.0.0-main.18](https://github.com/oclif/oclif/compare/v2.0.0-main.17...v2.0.0-main.18) (2021-12-08) -## [2.0.0-main.17](https://github.com/oclif/oclif/compare/v2.0.0-main.16...v2.0.0-main.17) (2021-12-08) +### Bug Fixes + +* **deps:** bump @oclif/plugin-help from 5.1.16 to 5.1.19 ([ac48fd7](https://github.com/oclif/oclif/commit/ac48fd702dc916f3e10ea9a8faed737d376ae0ac)) -## [2.0.0-main.16](https://github.com/oclif/oclif/compare/v2.0.0-main.15...v2.0.0-main.16) (2021-12-08) -## [2.0.0-main.15](https://github.com/oclif/oclif/compare/v2.0.0-main.14...v2.0.0-main.15) (2021-12-08) -## [2.0.0-main.14](https://github.com/oclif/oclif/compare/v2.0.0-main.13...v2.0.0-main.14) (2021-12-07) +## [3.2.28](https://github.com/oclif/oclif/compare/3.2.27...3.2.28) (2022-11-20) ### Bug Fixes -* bump deps ([#748](https://github.com/oclif/oclif/issues/748)) ([18a42ba](https://github.com/oclif/oclif/commit/18a42ba62dbd165d4ea10f04b755afcf23260b54)) +* **deps:** bump @oclif/plugin-warn-if-update-available ([e096886](https://github.com/oclif/oclif/commit/e096886d375ca53f19ec49bb654615cfa9458a93)) + -## [2.0.0-main.13](https://github.com/oclif/oclif/compare/v2.0.0-main.12...v2.0.0-main.13) (2021-12-07) + +## [3.2.27](https://github.com/oclif/oclif/compare/3.2.26...3.2.27) (2022-11-13) ### Bug Fixes -* bump deps ([#747](https://github.com/oclif/oclif/issues/747)) ([6f61f96](https://github.com/oclif/oclif/commit/6f61f96f123159cb0a9023063c8a949b3fd85a7f)) +* **deps:** bump @oclif/plugin-warn-if-update-available ([3f83f13](https://github.com/oclif/oclif/commit/3f83f132f85641b05eee0dc7bec82bcc2fdf103e)) + + -## [2.0.0-main.12](https://github.com/oclif/oclif/compare/v2.0.0-main.11...v2.0.0-main.12) (2021-12-06) +## [3.2.26](https://github.com/oclif/oclif/compare/3.2.25...3.2.26) (2022-11-13) ### Bug Fixes -* bump deps ([#735](https://github.com/oclif/oclif/issues/735)) ([e01c9a7](https://github.com/oclif/oclif/commit/e01c9a7ecf5635309eeca694532b9fa6c9b8bb0d)) +* **deps:** bump @oclif/core from 1.20.0 to 1.20.3 ([dfc7df1](https://github.com/oclif/oclif/commit/dfc7df1cfb477531c7ed88798e4de1a41795a0db)) +* **deps:** bump @oclif/core from 1.20.3 to 1.20.4 ([17b0394](https://github.com/oclif/oclif/commit/17b039479f261960fc9df21041445589737ad855)) -## [2.0.0-main.11](https://github.com/oclif/oclif/compare/v2.0.0-main.10...v2.0.0-main.11) (2021-12-01) -### Bug Fixes +## [3.2.25](https://github.com/oclif/oclif/compare/3.2.24...3.2.25) (2022-11-06) -* force main build to fix v1 tag/version ([140b581](https://github.com/oclif/oclif/commit/140b5811f018f56e3e26037402887415801f682a)) -## [2.0.0-main.10](https://github.com/oclif/oclif/compare/v2.0.0-main.9...v2.0.0-main.10) (2021-11-17) +### Bug Fixes +* **deps:** bump @oclif/plugin-not-found from 2.3.6 to 2.3.7 ([24925b0](https://github.com/oclif/oclif/commit/24925b0d6d33db584f7a330ccc08c42489c028be)) -### Features -* support darwin-arm tarballs ([#711](https://github.com/oclif/oclif/issues/711)) ([61cb766](https://github.com/oclif/oclif/commit/61cb7664ce38f1b7827ff652f063c3be7adeb1af)) -## [2.0.0-main.9](https://github.com/oclif/oclif/compare/v2.0.0-main.8...v2.0.0-main.9) (2021-11-04) +## [3.2.24](https://github.com/oclif/oclif/compare/3.2.23...3.2.24) (2022-10-30) -## [2.0.0-main.8](https://github.com/oclif/oclif/compare/v2.0.0-main.7...v2.0.0-main.8) (2021-10-08) -## [2.0.0-main.7](https://github.com/oclif/oclif/compare/v2.0.0-main.6...v2.0.0-main.7) (2021-10-08) +### Bug Fixes -## [2.0.0-main.6](https://github.com/oclif/oclif/compare/v2.0.0-main.5...v2.0.0-main.6) (2021-10-05) +* **deps:** bump @oclif/core from 1.18.0 to 1.20.0 ([a0a0a50](https://github.com/oclif/oclif/commit/a0a0a5020e3b57a99c5f4533a097acef8d89ba30)) -### Features -* add generate cmd ([#665](https://github.com/oclif/oclif/issues/665)) ([731ed49](https://github.com/oclif/oclif/commit/731ed490bc3bc1857d414dfd56d0d8dfd7b6be2b)) -* unhide releasing related cmds ([#670](https://github.com/oclif/oclif/issues/670)) ([25ace5f](https://github.com/oclif/oclif/commit/25ace5f0641cbda3bf8ee0c204be8e6a47f187c6)) +## [3.2.23](https://github.com/oclif/oclif/compare/3.2.22...3.2.23) (2022-10-30) ### Bug Fixes -* bump oclif/core to 1.0.0 ([#687](https://github.com/oclif/oclif/issues/687)) [skip-validate-pr] ([430bb19](https://github.com/oclif/oclif/commit/430bb19068133f3622f660f614e3fa69009cb73c)) +* **deps:** bump concurrently from 7.4.0 to 7.5.0 ([08caed4](https://github.com/oclif/oclif/commit/08caed4f3af3c4540c893b1a7b4585b089707f0c)) + -## [2.0.0-main.5](https://github.com/oclif/oclif/compare/v2.0.0-main.4...v2.0.0-main.5) (2021-09-20) +## [3.2.22](https://github.com/oclif/oclif/compare/3.2.21...3.2.22) (2022-10-23) -### ⚠ BREAKING CHANGES -* require node 12+ (#668) +### Bug Fixes -### build +* **deps:** bump @oclif/plugin-not-found from 2.3.5 to 2.3.6 ([f886f7a](https://github.com/oclif/oclif/commit/f886f7a6d64a5ca33b0bac934abe770501cc480c)) -* require node 12+ ([#668](https://github.com/oclif/oclif/issues/668)) ([99ceef1](https://github.com/oclif/oclif/commit/99ceef1e761a5f53f25435c8d733cb7a6fb01ba1)) -## [2.0.0-main.4](https://github.com/oclif/oclif/compare/v2.0.0-main.3...v2.0.0-main.4) (2021-09-20) -## [2.0.0-main.3](https://github.com/oclif/oclif/compare/v2.0.0-main.2...v2.0.0-main.3) (2021-09-16) +## [3.2.21](https://github.com/oclif/oclif/compare/3.2.20...3.2.21) (2022-10-23) ### Bug Fixes -* use summary field if available ([#667](https://github.com/oclif/oclif/issues/667)) ([60db19f](https://github.com/oclif/oclif/commit/60db19f89b44d451cfd6579f982b6545dec49ee6)) +* **deps:** bump @oclif/plugin-help from 5.1.15 to 5.1.16 ([18a6633](https://github.com/oclif/oclif/commit/18a66335f66433fc76ab5ee5703812bc1c2e0b93)) -## [2.0.0-main.2](https://github.com/oclif/oclif/compare/v2.0.0-main.1...v2.0.0-main.2) (2021-08-30) -### Bug Fixes +## [3.2.20](https://github.com/oclif/oclif/compare/3.2.19...3.2.20) (2022-10-20) -* force build to pickup latest oclif/core ([#648](https://github.com/oclif/oclif/issues/648)) ([4ed1e9a](https://github.com/oclif/oclif/commit/4ed1e9a568a88ef37b51b95f66419cf52e16a3b7)) -* remove context var ([#652](https://github.com/oclif/oclif/issues/652)) ([d8f12fa](https://github.com/oclif/oclif/commit/d8f12faa82566b562cd2c658013a6722e38872fc)) -## [2.0.0-main.1](https://github.com/oclif/oclif/compare/v2.0.0-main.0...v2.0.0-main.1) (2021-07-08) +### Bug Fixes +* deb pack privileges ([#987](https://github.com/oclif/oclif/issues/987)) ([5392841](https://github.com/oclif/oclif/commit/539284102e5f05779e5e96eae022756f8478bfae)) -### Bug Fixes -* throw error if WINDOWS_SIGNING_PASS is not set ([0dc68b0](https://github.com/oclif/oclif/commit/0dc68b09fd7f52719d45440e4faf85782ced9680)) -## [2.0.0-main.0](https://github.com/oclif/oclif/compare/v2.0.0-v2.0...v2.0.0-main.0) (2021-07-08) +## [3.2.19](https://github.com/oclif/oclif/compare/3.2.18...3.2.19) (2022-10-16) ### Bug Fixes -* change npm tag ([9d07724](https://github.com/oclif/oclif/commit/9d07724cd8b4a200bb6212425311cca2029fa752)) -* prerelease name ([084e890](https://github.com/oclif/oclif/commit/084e8909ea93300a86bf6ddf6319b87a0d3ee5b1)) +* **deps:** bump @oclif/core from 1.16.4 to 1.18.0 ([badd7b0](https://github.com/oclif/oclif/commit/badd7b0564a59f50833dd659c5bbfc6d50ac3591)) + + -## [2.0.0-v2.0](https://github.com/oclif/oclif/compare/v1.18.1...v2.0.0-v2.0) (2021-07-08) +## [3.2.18](https://github.com/oclif/oclif/compare/3.2.17...3.2.18) (2022-10-16) ### Bug Fixes -* use @oclif/core for readme/manifest ([#607](https://github.com/oclif/oclif/issues/607)) ([15ade45](https://github.com/oclif/oclif/commit/15ade4596e4888c2e343d81331132e4ded494338)) +* **deps:** bump @oclif/plugin-not-found from 2.3.4 to 2.3.5 ([b9a658e](https://github.com/oclif/oclif/commit/b9a658e22ebdbe4b8c14419b9b61606d9386a8cc)) -### [1.18.1](https://github.com/oclif/oclif/compare/v1.18.0...v1.18.1) (2021-07-01) -### Bug Fixes +## [3.2.17](https://github.com/oclif/oclif/compare/3.2.16...3.2.17) (2022-10-16) -* add setup_git script ([35d0920](https://github.com/oclif/oclif/commit/35d0920eae2958d7e9ae394523f06b1f034396ad)) -* move pretarball step ([#617](https://github.com/oclif/oclif/issues/617)) ([cd74340](https://github.com/oclif/oclif/commit/cd743408e5a8fd3e4f7e6effd6ec91adbe1121d4)) -* update config.yml ([97b630c](https://github.com/oclif/oclif/commit/97b630c2d1ac36b1975057fbc18caa420f828981)) -* update release job ([eb05cd5](https://github.com/oclif/oclif/commit/eb05cd5511dfac27617e916aa0415cdb5647f11e)) -# [1.17.0](https://github.com/oclif/oclif/compare/v1.16.2...v1.17.0) (2021-03-15) +### Bug Fixes +* **deps:** bump @oclif/plugin-help from 5.1.14 to 5.1.15 ([33b7925](https://github.com/oclif/oclif/commit/33b79250e7af4f7f38ffb2ebae43af900b96e829)) -### Features -* add pretarball hook ([#531](https://github.com/oclif/oclif/issues/531)) ([202dfbd](https://github.com/oclif/oclif/commit/202dfbd90a12ccf9ced368cf218799761cfe2813)) -## [1.16.1](https://github.com/oclif/oclif/compare/v1.16.0...v1.16.1) (2020-05-07) +## [3.2.16](https://github.com/oclif/oclif/compare/3.2.15...3.2.16) (2022-10-09) ### Bug Fixes -* short circuit with nullish coalescing operator ([#327](https://github.com/oclif/oclif/issues/327)) ([de8a7a0](https://github.com/oclif/oclif/commit/de8a7a0cb633cc9bfd34a6eff5374cda24344df8)) +* **deps:** bump aws-sdk from 2.1227.0 to 2.1231.0 ([e1234f5](https://github.com/oclif/oclif/commit/e1234f5a1db7b3cb1b8c0278fa2f3382b7eb6f69)) -# [1.16.0](https://github.com/oclif/oclif/compare/v1.15.2...v1.16.0) (2020-05-07) -### Features +## [3.2.15](https://github.com/oclif/oclif/compare/3.2.14...3.2.15) (2022-10-09) -* create clis with plugin-help v3 ([#343](https://github.com/oclif/oclif/issues/343)) ([a580350](https://github.com/oclif/oclif/commit/a580350a3988f3ebaa76c16180c0afe7fabdc763)) -## [1.15.2](https://github.com/oclif/oclif/compare/v1.15.1...v1.15.2) (2019-12-16) +### Bug Fixes +* **deps:** bump semver from 7.3.7 to 7.3.8 ([cda6620](https://github.com/oclif/oclif/commit/cda6620b5c69859f7474b1ef009567256b7ba427)) -### Bug Fixes -* include dev-cli in single cli generation & run readme ([#296](https://github.com/oclif/oclif/issues/296)) ([fcef7c9](https://github.com/oclif/oclif/commit/fcef7c9def2aeceef603cea2441c5a4e6bbc8972)) -## [1.15.1](https://github.com/oclif/oclif/compare/v1.15.0...v1.15.1) (2019-11-19) +## [3.2.14](https://github.com/oclif/oclif/compare/3.2.13...3.2.14) (2022-10-09) ### Bug Fixes -* nps build step in release ([#306](https://github.com/oclif/oclif/issues/306)) ([1fbf44b](https://github.com/oclif/oclif/commit/1fbf44b15b40adad6c4a61f7d62fff8c4f85fc0a)) +* **deps:** bump @oclif/plugin-not-found from 2.3.3 to 2.3.4 ([1bb086b](https://github.com/oclif/oclif/commit/1bb086b87fec53d858e51092a32f493bb79ab399)) -# [1.15.0](https://github.com/oclif/oclif/compare/v1.14.2...v1.15.0) (2019-11-19) -### Bug Fixes +## [3.2.13](https://github.com/oclif/oclif/compare/3.2.12...3.2.13) (2022-10-02) -* only use yarn in circle config if selected as option ([#298](https://github.com/oclif/oclif/issues/298)) ([9914b56](https://github.com/oclif/oclif/commit/9914b56bf16bfcdb5e1b4939bf8502652bacfabb)) +### Bug Fixes -### Features +* **deps:** bump aws-sdk from 2.1226.0 to 2.1227.0 ([6526f12](https://github.com/oclif/oclif/commit/6526f122ced48b7f8b6ca33dac5d5829ee4b6d1d)) -* remove tslint and default to eslint ([#305](https://github.com/oclif/oclif/issues/305)) ([9b188d9](https://github.com/oclif/oclif/commit/9b188d9b87d0218ed8704db4452b9bf5eb3a39e8)) -## [1.14.2](https://github.com/oclif/oclif/compare/v1.14.1...v1.14.2) (2019-10-25) + +## [3.2.12](https://github.com/oclif/oclif/compare/3.2.11...3.2.12) (2022-10-01) ### Bug Fixes -* bump nyc version in generator ([#295](https://github.com/oclif/oclif/issues/295)) ([5fdf1b0](https://github.com/oclif/oclif/commit/5fdf1b0d622d8662d7cd33f975c1730e549e33b2)) +* **deps:** bump aws-sdk from 2.1116.0 to 2.1226.0 ([6ad1679](https://github.com/oclif/oclif/commit/6ad1679dc2492c8ab484c7171beb99ae8eaf1714)) -## [1.14.1](https://github.com/oclif/oclif/compare/v1.14.0...v1.14.1) (2019-10-22) -### Bug Fixes +## [3.2.11](https://github.com/oclif/oclif/compare/3.2.10...3.2.11) (2022-09-30) -* update oclif deps ([fec3106](https://github.com/oclif/oclif/commit/fec3106ba1fbd4c37fcc5dc97472c9ada549a014)) -## [1.13.6](https://github.com/oclif/oclif/compare/v1.13.5...v1.13.6) (2019-08-28) +### Bug Fixes +* **deps:** bump @oclif/plugin-not-found from 2.3.1 to 2.3.3 ([f3142a7](https://github.com/oclif/oclif/commit/f3142a74d02f9770c9683ffc05204238ac1cd4bc)) -### Bug Fixes -* update README Requirements ([f2bd11e](https://github.com/oclif/oclif/commit/f2bd11e)) -## [1.13.5](https://github.com/oclif/oclif/compare/v1.13.4...v1.13.5) (2019-07-12) +## [3.2.10](https://github.com/oclif/oclif/compare/3.2.9...3.2.10) (2022-09-30) ### Bug Fixes -* update globby ([#259](https://github.com/oclif/oclif/issues/259)) ([468985e](https://github.com/oclif/oclif/commit/468985e)) +* **deps:** bump concurrently from 7.0.0 to 7.4.0 ([f5781ce](https://github.com/oclif/oclif/commit/f5781ce60c8fdf55dbbf41869c2b47a250c023f1)) -## [1.13.4](https://github.com/oclif/oclif/compare/v1.13.3...v1.13.4) (2019-06-20) -### Bug Fixes +## [3.2.9](https://github.com/oclif/oclif/compare/3.2.8...3.2.9) (2022-09-29) -* use correct path separators in travis.yml ([#248](https://github.com/oclif/oclif/issues/248)) ([ec41aa5](https://github.com/oclif/oclif/commit/ec41aa5)) -## [1.13.3](https://github.com/oclif/oclif/compare/v1.13.2...v1.13.3) (2019-06-17) +### Bug Fixes +* **deps:** bump @oclif/plugin-warn-if-update-available ([8d6a86c](https://github.com/oclif/oclif/commit/8d6a86cc91986862b5cff74db5c1f0b440caa09d)) -### Bug Fixes -* set "composite": false ([#247](https://github.com/oclif/oclif/issues/247)) ([25fde1c](https://github.com/oclif/oclif/commit/25fde1c)) -## [1.13.2](https://github.com/oclif/oclif/compare/v1.13.1...v1.13.2) (2019-05-29) +## [3.2.8](https://github.com/oclif/oclif/compare/3.2.7...3.2.8) (2022-09-29) ### Bug Fixes -* update license template copyright year ([9cfaea8](https://github.com/oclif/oclif/commit/9cfaea8)) +* **deps:** bump @oclif/core from 1.16.1 to 1.16.4 ([f546267](https://github.com/oclif/oclif/commit/f546267e21727b463409619fa320a7e724ec7186)) -## [1.13.1](https://github.com/oclif/oclif/compare/v1.13.0...v1.13.1) (2019-03-24) -### Bug Fixes +## [3.2.7](https://github.com/oclif/oclif/compare/3.2.6...3.2.7) (2022-09-29) -* test on node 10 ([cf10522](https://github.com/oclif/oclif/commit/cf10522)) -# [1.13.0](https://github.com/oclif/oclif/compare/v1.12.10...v1.13.0) (2019-03-17) +### Bug Fixes +* **deps:** bump @oclif/plugin-help from 5.1.12 to 5.1.14 ([0a5a33c](https://github.com/oclif/oclif/commit/0a5a33ce652e79c37da3f56ae48fbe10a0cbcd0c)) -### Features -* Added Travis CI Support ([#214](https://github.com/oclif/oclif/issues/214)) ([5a9d300](https://github.com/oclif/oclif/commit/5a9d300)) -## [1.12.10](https://github.com/oclif/oclif/compare/v1.12.9...v1.12.10) (2019-02-12) +## [3.2.6](https://github.com/oclif/oclif/compare/3.2.5...3.2.6) (2022-09-29) ### Bug Fixes -* don't include mocha types on no mocha ([#206](https://github.com/oclif/oclif/issues/206)) ([505c43b](https://github.com/oclif/oclif/commit/505c43b)) +* **deps:** bump yeoman-environment from 3.9.1 to 3.11.1 ([9ca60df](https://github.com/oclif/oclif/commit/9ca60dff900142597bfba3d86bf0977d82173719)) -## [1.12.9](https://github.com/oclif/oclif/compare/v1.12.8...v1.12.9) (2019-02-11) -### Bug Fixes +## [3.2.5](https://github.com/oclif/oclif/compare/3.2.4...3.2.5) (2022-09-27) -* typescript@3.3 ([6ff355f](https://github.com/oclif/oclif/commit/6ff355f)) -## [1.12.8](https://github.com/oclif/oclif/compare/v1.12.7...v1.12.8) (2018-12-17) +### Bug Fixes +* wrongly packaging child bundles on MacOS ([#971](https://github.com/oclif/oclif/issues/971)) ([de64974](https://github.com/oclif/oclif/commit/de649743c9584ffbe1ad150cb485530e04c1621d)) -### Bug Fixes -* typescript@3.2 ([#197](https://github.com/oclif/oclif/issues/197)) ([07013c8](https://github.com/oclif/oclif/commit/07013c8)) -## [1.12.7](https://github.com/oclif/oclif/compare/v1.12.6...v1.12.7) (2018-12-03) +## [3.2.4](https://github.com/oclif/oclif/compare/3.2.3...3.2.4) (2022-09-27) ### Bug Fixes -* updated deps ([ffe8868](https://github.com/oclif/oclif/commit/ffe8868)) +* add toc tag to readme command description ([#924](https://github.com/oclif/oclif/issues/924)) ([5bdd481](https://github.com/oclif/oclif/commit/5bdd4819b513558082010035bef4230d3d111957)) -## [1.12.6](https://github.com/oclif/oclif/compare/v1.12.5...v1.12.6) (2018-11-14) + + +## [3.2.3](https://github.com/oclif/oclif/compare/v3.2.2...3.2.3) (2022-09-27) ### Bug Fixes -* updated deps ([2ff77ed](https://github.com/oclif/oclif/commit/2ff77ed)) +* Update hooks generator to point to ./dist/hooks instead of ./src/hooks ([#904](https://github.com/oclif/oclif/issues/904)) ([fd48e54](https://github.com/oclif/oclif/commit/fd48e548863e3eb27f22a2de9e0e274ae56a9448)) -## [1.12.5](https://github.com/oclif/oclif/compare/v1.12.4...v1.12.5) (2018-10-16) -### Bug Fixes +## [3.2.2](https://github.com/oclif/oclif/compare/v3.2.1...v3.2.2) (2022-09-16) -* default to not using shrinkwrap ([902c350](https://github.com/oclif/oclif/commit/902c350)) -## [1.12.4](https://github.com/oclif/oclif/compare/v1.12.3...v1.12.4) (2018-10-13) + +## [3.2.1](https://github.com/oclif/oclif/compare/v3.2.0...v3.2.1) (2022-09-09) ### Bug Fixes -* remove greenkeeper badge ([9690390](https://github.com/oclif/oclif/commit/9690390)) +* bump oclif/core ([21aa0d7](https://github.com/oclif/oclif/commit/21aa0d754f0afe5a2e9f25cd1c32266ef2b9ac2d)) -## [1.12.3](https://github.com/oclif/oclif/compare/v1.12.2...v1.12.3) (2018-10-13) -### Bug Fixes +# [3.2.0](https://github.com/oclif/oclif/compare/v3.1.2...v3.2.0) (2022-09-06) -* prepack ([85c0a36](https://github.com/oclif/oclif/commit/85c0a36)) -## [1.12.2](https://github.com/oclif/oclif/compare/v1.12.1...v1.12.2) (2018-10-13) +### Features +* add `--aliases` flag for readme command ([#925](https://github.com/oclif/oclif/issues/925)) ([#952](https://github.com/oclif/oclif/issues/952)) ([5bf2b5a](https://github.com/oclif/oclif/commit/5bf2b5a51210d554a1768d69fbf93c9c6f6b2b2a)) -### Bug Fixes -* shrinkwrap ([7f86997](https://github.com/oclif/oclif/commit/7f86997)) -## [1.12.1](https://github.com/oclif/oclif/compare/v1.12.0...v1.12.1) (2018-09-15) +## [3.1.2](https://github.com/oclif/oclif/compare/v3.1.1...v3.1.2) (2022-07-27) ### Bug Fixes -* source-map-register is not needed ([dfd3170](https://github.com/oclif/oclif/commit/dfd3170)) +* await yeoman generators ([#926](https://github.com/oclif/oclif/issues/926)) ([da5a4d2](https://github.com/oclif/oclif/commit/da5a4d202be114fe7f0c00d2737a9faf8f4e19ab)) -# [1.12.0](https://github.com/oclif/oclif/compare/v1.11.7...v1.12.0) (2018-09-15) + + +## [3.1.1](https://github.com/oclif/oclif/compare/v3.1.0...v3.1.1) (2022-07-15) ### Bug Fixes -* break linters out into separate question ([a3edcd4](https://github.com/oclif/oclif/commit/a3edcd4)) -* break linters out into separate question ([c8b05f8](https://github.com/oclif/oclif/commit/c8b05f8)) -* break yarn/npm into separate question ([3f80dea](https://github.com/oclif/oclif/commit/3f80dea)) -* remove unnecessary tsc calls ([85082b5](https://github.com/oclif/oclif/commit/85082b5)) +* readme for single command cli ([#916](https://github.com/oclif/oclif/issues/916)) ([242b34f](https://github.com/oclif/oclif/commit/242b34f62656b2c6ee8a1d0ecda8d98f8c1c5bbc)) -### Features -* simplify nyc config ([86a2c52](https://github.com/oclif/oclif/commit/86a2c52)) -* use typescript 3.0 project references ([3a9bf0f](https://github.com/oclif/oclif/commit/3a9bf0f)) +# [3.1.0](https://github.com/oclif/oclif/compare/v3.0.1...v3.1.0) (2022-07-07) -## [1.11.7](https://github.com/oclif/oclif/compare/v1.11.6...v1.11.7) (2018-09-14) +### Features -### Bug Fixes +* build/pack in parallel ([#914](https://github.com/oclif/oclif/issues/914)) ([d86c722](https://github.com/oclif/oclif/commit/d86c722d8de66560c672c2fbdb338cc9a024caa2)) -* greenkeeper-lockfile no longer necessary ([8f55fd0](https://github.com/oclif/oclif/commit/8f55fd0)) -## [1.11.6](https://github.com/oclif/oclif/compare/v1.11.5...v1.11.6) (2018-09-14) + +## [3.0.1](https://github.com/oclif/oclif/compare/v3.0.0...v3.0.1) (2022-04-18) ### Bug Fixes -* updated eslint and tslint ([c2ae997](https://github.com/oclif/oclif/commit/c2ae997)) +* remove outdated code ([#866](https://github.com/oclif/oclif/issues/866)) ([e3f60a3](https://github.com/oclif/oclif/commit/e3f60a3109502bc59d1fbd71a3fbbd3668dcd3eb)) -## [1.11.5](https://github.com/oclif/oclif/compare/v1.11.4...v1.11.5) (2018-08-29) -### Bug Fixes +# [3.0.0](https://github.com/oclif/oclif/compare/v2.6.3...v3.0.0) (2022-04-13) -* fixpack -> [@oclif](https://github.com/oclif)/fixpack ([a69c4be](https://github.com/oclif/oclif/commit/a69c4be)) -* hide yarn output when not found ([a3897b1](https://github.com/oclif/oclif/commit/a3897b1)) -* set project path for single CLIs ([3ec87bc](https://github.com/oclif/oclif/commit/3ec87bc)), closes [#161](https://github.com/oclif/oclif/issues/161) -* use [@oclif](https://github.com/oclif)/fixpack to fix audit warning ([0c2aa20](https://github.com/oclif/oclif/commit/0c2aa20)) -## [1.11.4](https://github.com/oclif/oclif/compare/v1.11.3...v1.11.4) (2018-08-22) + +## [2.6.3](https://github.com/oclif/oclif/compare/v2.6.2...v2.6.3) (2022-03-31) ### Bug Fixes -* updated yeoman and update warning ([deea525](https://github.com/oclif/oclif/commit/deea525)) +* update oclif/core ([7e86036](https://github.com/oclif/oclif/commit/7e86036b4e673003ad6226852260c929d62a1c39)) + -## [1.11.3](https://github.com/oclif/oclif/compare/v1.11.2...v1.11.3) (2018-08-22) + +## [2.6.2](https://github.com/oclif/oclif/compare/v2.6.1...v2.6.2) (2022-03-31) ### Bug Fixes -* update eslint to latest major in generator ([#152](https://github.com/oclif/oclif/issues/152)) ([7d72d21](https://github.com/oclif/oclif/commit/7d72d21)) +* revert building mac m1 packages, wait for PR [#849](https://github.com/oclif/oclif/issues/849) ([#855](https://github.com/oclif/oclif/issues/855)) ([e5b68af](https://github.com/oclif/oclif/commit/e5b68af8510b0419ec48d76087ed0bec61fc81ad)) -## [1.11.2](https://github.com/oclif/oclif/compare/v1.11.1...v1.11.2) (2018-08-17) -### Bug Fixes +## [2.6.1](https://github.com/oclif/oclif/compare/v2.6.0...v2.6.1) (2022-03-23) -* use greenkeeper-lockfile@2 ([1e99237](https://github.com/oclif/oclif/commit/1e99237)) -## [1.11.1](https://github.com/oclif/oclif/compare/v1.11.0...v1.11.1) (2018-08-17) +# [2.6.0](https://github.com/oclif/oclif/compare/v2.5.0...v2.6.0) (2022-03-14) -### Bug Fixes -* updated oclif and dev-cli ([e2adf70](https://github.com/oclif/oclif/commit/e2adf70)) +### Features -# [1.11.0](https://github.com/oclif/oclif/compare/v1.10.3...v1.11.0) (2018-08-17) +* Add support to build darwin-arm64 for `oclif pack macos` ([#847](https://github.com/oclif/oclif/issues/847)) ([61a96c2](https://github.com/oclif/oclif/commit/61a96c2a1c435f5abce8c2348cf7756a4b997269)) -### Bug Fixes -* updated oclif ([edd7fd8](https://github.com/oclif/oclif/commit/edd7fd8)) +# [2.5.0](https://github.com/oclif/oclif/compare/v2.4.5...v2.5.0) (2022-02-24) ### Features -* typescript 3 and ts-node 7 ([9c58896](https://github.com/oclif/oclif/commit/9c58896)) +* remove all relevant directories on uninstall ([#831](https://github.com/oclif/oclif/issues/831)) ([acd986d](https://github.com/oclif/oclif/commit/acd986d53681b3840f17220b6e16fd8bb3c869f7)) -## [1.10.3](https://github.com/oclif/oclif/compare/v1.10.2...v1.10.3) (2018-08-17) -### Bug Fixes +## [2.4.5](https://github.com/oclif/oclif/compare/v2.4.4...v2.4.5) (2022-02-17) -* regenerate readme when adding command ([408705b](https://github.com/oclif/oclif/commit/408705b)) -## [1.10.2](https://github.com/oclif/oclif/compare/v1.10.1...v1.10.2) (2018-08-17) + +## [2.4.4](https://github.com/oclif/oclif/compare/v2.4.3...v2.4.4) (2022-02-09) ### Bug Fixes -* generate readme ([185ef6c](https://github.com/oclif/oclif/commit/185ef6c)) -* newlines in readme ([5281952](https://github.com/oclif/oclif/commit/5281952)) +* fix tarball packing in paths with spaces ([#825](https://github.com/oclif/oclif/issues/825)) ([#826](https://github.com/oclif/oclif/issues/826)) ([9e12c70](https://github.com/oclif/oclif/commit/9e12c70be6c85a9de7fff991e2c2d6574fd6173d)) + -## [1.10.1](https://github.com/oclif/oclif/compare/v1.10.0...v1.10.1) (2018-08-17) + +## [2.4.3](https://github.com/oclif/oclif/compare/v2.4.2...v2.4.3) (2022-02-01) ### Bug Fixes -* add circleci,appveyor,codecov to examples ([5cc3f54](https://github.com/oclif/oclif/commit/5cc3f54)) -* always use --save with npm ([#149](https://github.com/oclif/oclif/issues/149)) ([151af6f](https://github.com/oclif/oclif/commit/151af6f)) +* remove dependency on nps-utils ([#822](https://github.com/oclif/oclif/issues/822)) ([5c01f53](https://github.com/oclif/oclif/commit/5c01f53930ce56a476ba1f8abd1208cbc5b91dc2)) -# [1.10.0](https://github.com/oclif/oclif/compare/v1.9.0...v1.10.0) (2018-08-17) -### Features +## [2.4.2](https://github.com/oclif/oclif/compare/v2.4.1...v2.4.2) (2022-02-01) -* make appveyor optional ([#138](https://github.com/oclif/oclif/issues/138)) ([74d17c1](https://github.com/oclif/oclif/commit/74d17c1)) -* make codecov optional ([#139](https://github.com/oclif/oclif/issues/139)) ([30c6aff](https://github.com/oclif/oclif/commit/30c6aff)) -* typescript 3.x ([5badc7a](https://github.com/oclif/oclif/commit/5badc7a)) -# [1.9.0](https://github.com/oclif/oclif/compare/v1.8.6...v1.9.0) (2018-07-09) +### Bug Fixes +* remove IManifest ([#823](https://github.com/oclif/oclif/issues/823)) ([31f1f07](https://github.com/oclif/oclif/commit/31f1f07480d4f59db45da35ff0926bc44665cc6f)) -### Features -* make circleci optional ([#137](https://github.com/oclif/oclif/issues/137)) ([259d304](https://github.com/oclif/oclif/commit/259d304)) -## [1.8.6](https://github.com/oclif/oclif/compare/v1.8.5...v1.8.6) (2018-07-02) +## [2.4.1](https://github.com/oclif/oclif/compare/v2.4.0...v2.4.1) (2022-01-31) ### Bug Fixes -* updated deps ([6f71fed](https://github.com/oclif/oclif/commit/6f71fed)) +* update error messages ([#806](https://github.com/oclif/oclif/issues/806)) ([7a63b49](https://github.com/oclif/oclif/commit/7a63b4987bd8d6e4f2f3211a05248296e5f6d090)) -## [1.8.5](https://github.com/oclif/oclif/compare/v1.8.4...v1.8.5) (2018-06-16) -### Bug Fixes +# [2.4.0](https://github.com/oclif/oclif/compare/v2.3.1...v2.4.0) (2022-01-27) -* remove shrinkwrap after publishing ([3a1441d](https://github.com/oclif/oclif/commit/3a1441d)) -## [1.8.4](https://github.com/oclif/oclif/compare/v1.8.3...v1.8.4) (2018-06-14) +### Features +* remove cli-ux ([#804](https://github.com/oclif/oclif/issues/804)) ([fd9d1fb](https://github.com/oclif/oclif/commit/fd9d1fb5672df197c559c6044d51797ad6fe7ffd)) -### Bug Fixes -* js setups ([ab161e5](https://github.com/oclif/oclif/commit/ab161e5)) -## [1.8.3](https://github.com/oclif/oclif/compare/v1.8.2...v1.8.3) (2018-06-14) +## [2.3.1](https://github.com/oclif/oclif/compare/v2.3.0...v2.3.1) (2022-01-27) ### Bug Fixes -* add shrinkwrap file ([819e971](https://github.com/oclif/oclif/commit/819e971)) +* remove accidental dep ([8e5435f](https://github.com/oclif/oclif/commit/8e5435fb84febd950be387849f921a76a39f8eb0)) -## [1.8.2](https://github.com/oclif/oclif/compare/v1.8.1...v1.8.2) (2018-06-12) -### Bug Fixes +# [2.3.0](https://github.com/oclif/oclif/compare/v2.2.0...v2.3.0) (2022-01-20) -* Add rimraf to devDependencies for single and multi projects and use it in npm scripts ([#123](https://github.com/oclif/oclif/issues/123)) ([764ade1](https://github.com/oclif/oclif/commit/764ade1)) -## [1.8.1](https://github.com/oclif/oclif/compare/v1.8.0...v1.8.1) (2018-06-10) +### Features +* use yeoman-generator v5 ([#797](https://github.com/oclif/oclif/issues/797)) ([37827bf](https://github.com/oclif/oclif/commit/37827bf258ff8145c98a9c621b853ac6b1020fdb)) -### Bug Fixes -* updated deps ([50604af](https://github.com/oclif/oclif/commit/50604af)) - -# [1.8.0](https://github.com/oclif/oclif/compare/v1.7.56...v1.8.0) (2018-06-02) +# [2.2.0](https://github.com/oclif/oclif/compare/v2.1.8...v2.2.0) (2022-01-13) ### Features -* add oclif badge ([620707c](https://github.com/oclif/oclif/commit/620707c)) +* optionally include tarball path as input ([#764](https://github.com/oclif/oclif/issues/764)) ([#796](https://github.com/oclif/oclif/issues/796)) ([ee6ff99](https://github.com/oclif/oclif/commit/ee6ff99ad5e11cb1abe1de17791a8b987833e381)) - -## [1.7.56](https://github.com/oclif/oclif/compare/v1.7.55...v1.7.56) (2018-06-01) -### Bug Fixes +## [2.1.8](https://github.com/oclif/oclif/compare/v2.1.7...v2.1.8) (2022-01-12) -* nyc@12 ([8984592](https://github.com/oclif/oclif/commit/8984592)) - -## [1.7.55](https://github.com/oclif/oclif/compare/v1.7.54...v1.7.55) (2018-06-01) +### Bug Fixes +* remove unnecessary dependency ([#794](https://github.com/oclif/oclif/issues/794)) ([f814f00](https://github.com/oclif/oclif/commit/f814f009b9b203c8917e265c16015a08af911537)) -### Bug Fixes -* add prepare step ([dd927fb](https://github.com/oclif/oclif/commit/dd927fb)) -* remove es module config ([80ef22b](https://github.com/oclif/oclif/commit/80ef22b)) -* updated deps ([64a13d1](https://github.com/oclif/oclif/commit/64a13d1)) -* updated fancy-test ([a58f942](https://github.com/oclif/oclif/commit/a58f942)) - -## [1.7.54](https://github.com/oclif/oclif/compare/v1.7.53...v1.7.54) (2018-06-01) +## [2.1.7](https://github.com/oclif/oclif/compare/v2.1.6...v2.1.7) (2022-01-11) ### Bug Fixes -* add tslib ([360924a](https://github.com/oclif/oclif/commit/360924a)) -* path names for eslint ([64808b3](https://github.com/oclif/oclif/commit/64808b3)) -* typescript 2.9 ([0774d0f](https://github.com/oclif/oclif/commit/0774d0f)) +* correct package name ([#792](https://github.com/oclif/oclif/issues/792)) ([7197f98](https://github.com/oclif/oclif/commit/7197f98233d4391e4f322d16ff4a0cc92f7a4a6f)) + - -## [1.7.53](https://github.com/oclif/oclif/compare/v1.7.52...v1.7.53) (2018-05-31) + +## [2.1.6](https://github.com/oclif/oclif/compare/v2.1.5...v2.1.6) (2022-01-11) ### Bug Fixes -* typescript 2.9 ([3c2b1ea](https://github.com/oclif/oclif/commit/3c2b1ea)) +* remove fixpack dependency ([#791](https://github.com/oclif/oclif/issues/791)) ([823300e](https://github.com/oclif/oclif/commit/823300e103bac560fd1e9e8748b33be59a80b066)) - -## [1.7.52](https://github.com/oclif/oclif/compare/v1.7.51...v1.7.52) (2018-05-30) -### Bug Fixes +## [2.1.5](https://github.com/oclif/oclif/compare/v2.1.4...v2.1.5) (2022-01-10) -* command descriptions not showing up in the help ([#124](https://github.com/oclif/oclif/issues/124)) ([dd37310](https://github.com/oclif/oclif/commit/dd37310)) - -## [1.7.51](https://github.com/oclif/oclif/compare/v1.7.50...v1.7.51) (2018-05-28) + +## [2.1.4](https://github.com/oclif/oclif/compare/v2.1.3...v2.1.4) (2022-01-10) ### Bug Fixes -* updated deps ([ff3efd0](https://github.com/oclif/oclif/commit/ff3efd0)) +* bump cli-ux to 6.0.8 ([46d2d8a](https://github.com/oclif/oclif/commit/46d2d8abaf0ba0b4d076e5ac33fa8ca78a528ed6)) - -## [1.7.50](https://github.com/oclif/oclif/compare/v1.7.49...v1.7.50) (2018-05-24) -### Bug Fixes +## [2.1.3](https://github.com/oclif/oclif/compare/v2.1.2...v2.1.3) (2022-01-10) -* add yarn.lock to npm files for plugins ([06f5893](https://github.com/oclif/oclif/commit/06f5893)) - -## [1.7.49](https://github.com/oclif/oclif/compare/v1.7.48...v1.7.49) (2018-05-22) +### Bug Fixes +* bump deps ([154913b](https://github.com/oclif/oclif/commit/154913bd8db4139b9298d78355f889f20dfb23eb)) -### Bug Fixes -* use explicit typeRoot path ([dad2052](https://github.com/oclif/oclif/commit/dad2052)) - -## [1.7.48](https://github.com/oclif/oclif/compare/v1.7.47...v1.7.48) (2018-05-22) +## [2.1.2](https://github.com/oclif/oclif/compare/v2.1.1...v2.1.2) (2022-01-08) ### Bug Fixes -* bust circle cache ([7702f90](https://github.com/oclif/oclif/commit/7702f90)) +* add override for colors ([8bb26b0](https://github.com/oclif/oclif/commit/8bb26b01859165de8759529f8b61ae28cf25b748)) - -## [1.7.47](https://github.com/oclif/oclif/compare/v1.7.46...v1.7.47) (2018-05-22) + + +## [2.1.1](https://github.com/oclif/oclif/compare/v2.1.0...v2.1.1) (2022-01-08) + + +### Bug Fixes + +* add resolution for colors ([0ea44d4](https://github.com/oclif/oclif/commit/0ea44d45cffdca54c5294a97725a332f94fb69c2)) + + + +# [2.1.0](https://github.com/oclif/oclif/compare/v2.0.1...v2.1.0) (2021-12-21) + + +### Features + +* add version info to registry for windows installers ([#769](https://github.com/oclif/oclif/issues/769)) ([291603a](https://github.com/oclif/oclif/commit/291603a471757596ebed27b0758bae9871fd53b0)) + + + +## [2.0.1](https://github.com/oclif/oclif/compare/v2.0.0-main.19...v2.0.1) (2021-12-08) + + + +# [2.0.0-main.19](https://github.com/oclif/oclif/compare/v2.0.0-main.18...v2.0.0-main.19) (2021-12-08) + + +### Bug Fixes + +* bump deps ([#750](https://github.com/oclif/oclif/issues/750)) ([ffb9b99](https://github.com/oclif/oclif/commit/ffb9b99ba2f53a9049f04d0dfea1a4b4b427dfe0)) + + + +# [2.0.0-main.18](https://github.com/oclif/oclif/compare/v2.0.0-main.17...v2.0.0-main.18) (2021-12-08) + + + +# [2.0.0-main.17](https://github.com/oclif/oclif/compare/v2.0.0-main.16...v2.0.0-main.17) (2021-12-08) + + + +# [2.0.0-main.16](https://github.com/oclif/oclif/compare/v2.0.0-main.15...v2.0.0-main.16) (2021-12-08) + + + +# [2.0.0-main.15](https://github.com/oclif/oclif/compare/v2.0.0-main.14...v2.0.0-main.15) (2021-12-08) + + + +# [2.0.0-main.14](https://github.com/oclif/oclif/compare/v2.0.0-main.13...v2.0.0-main.14) (2021-12-07) + + +### Bug Fixes + +* bump deps ([#748](https://github.com/oclif/oclif/issues/748)) ([18a42ba](https://github.com/oclif/oclif/commit/18a42ba62dbd165d4ea10f04b755afcf23260b54)) + + + +# [2.0.0-main.13](https://github.com/oclif/oclif/compare/v2.0.0-main.12...v2.0.0-main.13) (2021-12-07) + + +### Bug Fixes + +* bump deps ([#747](https://github.com/oclif/oclif/issues/747)) ([6f61f96](https://github.com/oclif/oclif/commit/6f61f96f123159cb0a9023063c8a949b3fd85a7f)) + + + +# [2.0.0-main.12](https://github.com/oclif/oclif/compare/v2.0.0-main.11...v2.0.0-main.12) (2021-12-06) + + +### Bug Fixes + +* bump deps ([#735](https://github.com/oclif/oclif/issues/735)) ([e01c9a7](https://github.com/oclif/oclif/commit/e01c9a7ecf5635309eeca694532b9fa6c9b8bb0d)) + + + +# [2.0.0-main.11](https://github.com/oclif/oclif/compare/v2.0.0-main.10...v2.0.0-main.11) (2021-12-01) + + +### Bug Fixes + +* force main build to fix v1 tag/version ([140b581](https://github.com/oclif/oclif/commit/140b5811f018f56e3e26037402887415801f682a)) + + + +# [2.0.0-main.10](https://github.com/oclif/oclif/compare/v2.0.0-main.9...v2.0.0-main.10) (2021-11-17) + + +### Features + +* support darwin-arm tarballs ([#711](https://github.com/oclif/oclif/issues/711)) ([61cb766](https://github.com/oclif/oclif/commit/61cb7664ce38f1b7827ff652f063c3be7adeb1af)) + + + +# [2.0.0-main.9](https://github.com/oclif/oclif/compare/v2.0.0-main.8...v2.0.0-main.9) (2021-11-04) + + + +# [2.0.0-main.8](https://github.com/oclif/oclif/compare/v2.0.0-main.7...v2.0.0-main.8) (2021-10-08) + + + +# [2.0.0-main.7](https://github.com/oclif/oclif/compare/v2.0.0-main.6...v2.0.0-main.7) (2021-10-08) + + + +# [2.0.0-main.6](https://github.com/oclif/oclif/compare/v2.0.0-main.5...v2.0.0-main.6) (2021-10-05) + + +### Bug Fixes + +* bump oclif/core to 1.0.0 ([#687](https://github.com/oclif/oclif/issues/687)) [skip-validate-pr] ([430bb19](https://github.com/oclif/oclif/commit/430bb19068133f3622f660f614e3fa69009cb73c)) + + +### Features + +* add generate cmd ([#665](https://github.com/oclif/oclif/issues/665)) ([731ed49](https://github.com/oclif/oclif/commit/731ed490bc3bc1857d414dfd56d0d8dfd7b6be2b)) +* unhide releasing related cmds ([#670](https://github.com/oclif/oclif/issues/670)) ([25ace5f](https://github.com/oclif/oclif/commit/25ace5f0641cbda3bf8ee0c204be8e6a47f187c6)) + + + +# [2.0.0-main.5](https://github.com/oclif/oclif/compare/v2.0.0-main.4...v2.0.0-main.5) (2021-09-20) + + + +# [2.0.0-main.4](https://github.com/oclif/oclif/compare/v2.0.0-main.3...v2.0.0-main.4) (2021-09-20) + + + +# [2.0.0-main.3](https://github.com/oclif/oclif/compare/v2.0.0-main.2...v2.0.0-main.3) (2021-09-16) + + +### Bug Fixes + +* use summary field if available ([#667](https://github.com/oclif/oclif/issues/667)) ([60db19f](https://github.com/oclif/oclif/commit/60db19f89b44d451cfd6579f982b6545dec49ee6)) + + + +# [2.0.0-main.2](https://github.com/oclif/oclif/compare/v2.0.0-2.0...v2.0.0-main.2) (2021-08-30) + + +### Bug Fixes + +* force build to pickup latest oclif/core ([#648](https://github.com/oclif/oclif/issues/648)) ([4ed1e9a](https://github.com/oclif/oclif/commit/4ed1e9a568a88ef37b51b95f66419cf52e16a3b7)) +* remove context var ([#652](https://github.com/oclif/oclif/issues/652)) ([d8f12fa](https://github.com/oclif/oclif/commit/d8f12faa82566b562cd2c658013a6722e38872fc)) + + + +# [2.0.0-main.1](https://github.com/oclif/oclif/compare/v2.0.0-main.0...v2.0.0-main.1) (2021-07-08) + + +### Bug Fixes + +* throw error if WINDOWS_SIGNING_PASS is not set ([0dc68b0](https://github.com/oclif/oclif/commit/0dc68b09fd7f52719d45440e4faf85782ced9680)) + + + +# [2.0.0-main.0](https://github.com/oclif/oclif/compare/v2.0.0-v2.0...v2.0.0-main.0) (2021-07-08) + + +### Bug Fixes + +* change npm tag ([9d07724](https://github.com/oclif/oclif/commit/9d07724cd8b4a200bb6212425311cca2029fa752)) +* prerelease name ([084e890](https://github.com/oclif/oclif/commit/084e8909ea93300a86bf6ddf6319b87a0d3ee5b1)) + + + +# [2.0.0-v2.0](https://github.com/oclif/oclif/compare/v1.18.1...v2.0.0-v2.0) (2021-07-08) + + +### Bug Fixes + +* use @oclif/core for readme/manifest ([#607](https://github.com/oclif/oclif/issues/607)) ([15ade45](https://github.com/oclif/oclif/commit/15ade4596e4888c2e343d81331132e4ded494338)) + + + +## [1.18.1](https://github.com/oclif/oclif/compare/v1.18.0...v1.18.1) (2021-07-01) + + +### Bug Fixes + +* add setup_git script ([35d0920](https://github.com/oclif/oclif/commit/35d0920eae2958d7e9ae394523f06b1f034396ad)) +* move pretarball step ([#617](https://github.com/oclif/oclif/issues/617)) ([cd74340](https://github.com/oclif/oclif/commit/cd743408e5a8fd3e4f7e6effd6ec91adbe1121d4)) +* update config.yml ([97b630c](https://github.com/oclif/oclif/commit/97b630c2d1ac36b1975057fbc18caa420f828981)) +* update release job ([eb05cd5](https://github.com/oclif/oclif/commit/eb05cd5511dfac27617e916aa0415cdb5647f11e)) + + + +# [1.18.0](https://github.com/oclif/oclif/compare/v1.17.1...v1.18.0) (2021-05-26) + + +### Features + +* option to produce sorted index files on version promote ([67e1bae](https://github.com/oclif/oclif/commit/67e1baeeeecc45827feab88af30694d614cc8ce8)) + + + +## [1.17.1](https://github.com/oclif/oclif/compare/v1.17.0...v1.17.1) (2021-05-18) + + +### Bug Fixes + +* respect cache on promote ([#578](https://github.com/oclif/oclif/issues/578)) ([8ddd596](https://github.com/oclif/oclif/commit/8ddd596f27586d69876416e4fec6b4ef4cf9740b)) + + + +# [1.17.0](https://github.com/oclif/oclif/compare/v1.16.2...v1.17.0) (2021-03-15) + + +### Features + +* add pretarball hook ([#531](https://github.com/oclif/oclif/issues/531)) ([202dfbd](https://github.com/oclif/oclif/commit/202dfbd90a12ccf9ced368cf218799761cfe2813)) + + + +## [1.16.2](https://github.com/oclif/oclif/compare/v1.16.1...v1.16.2) (2021-03-11) + + + +## [1.16.1](https://github.com/oclif/oclif/compare/v1.16.0...v1.16.1) (2020-05-07) + + +### Bug Fixes + +* short circuit with nullish coalescing operator ([#327](https://github.com/oclif/oclif/issues/327)) ([de8a7a0](https://github.com/oclif/oclif/commit/de8a7a0cb633cc9bfd34a6eff5374cda24344df8)) + + + +# [1.16.0](https://github.com/oclif/oclif/compare/v1.15.2...v1.16.0) (2020-05-07) + + +### Features + +* create clis with plugin-help v3 ([#343](https://github.com/oclif/oclif/issues/343)) ([a580350](https://github.com/oclif/oclif/commit/a580350a3988f3ebaa76c16180c0afe7fabdc763)) + + + +## [1.15.2](https://github.com/oclif/oclif/compare/v1.15.1...v1.15.2) (2019-12-16) + + +### Bug Fixes + +* include dev-cli in single cli generation & run readme ([#296](https://github.com/oclif/oclif/issues/296)) ([fcef7c9](https://github.com/oclif/oclif/commit/fcef7c9def2aeceef603cea2441c5a4e6bbc8972)) + + + +## [1.15.1](https://github.com/oclif/oclif/compare/v1.15.0...v1.15.1) (2019-11-19) + + +### Bug Fixes + +* nps build step in release ([#306](https://github.com/oclif/oclif/issues/306)) ([1fbf44b](https://github.com/oclif/oclif/commit/1fbf44b15b40adad6c4a61f7d62fff8c4f85fc0a)) + + + +# [1.15.0](https://github.com/oclif/oclif/compare/v1.14.2...v1.15.0) (2019-11-19) + + +### Bug Fixes + +* only use yarn in circle config if selected as option ([#298](https://github.com/oclif/oclif/issues/298)) ([9914b56](https://github.com/oclif/oclif/commit/9914b56bf16bfcdb5e1b4939bf8502652bacfabb)) + + +### Features + +* remove tslint and default to eslint ([#305](https://github.com/oclif/oclif/issues/305)) ([9b188d9](https://github.com/oclif/oclif/commit/9b188d9b87d0218ed8704db4452b9bf5eb3a39e8)) + + + +## [1.14.2](https://github.com/oclif/oclif/compare/v1.14.1...v1.14.2) (2019-10-25) + + +### Bug Fixes + +* bump nyc version in generator ([#295](https://github.com/oclif/oclif/issues/295)) ([5fdf1b0](https://github.com/oclif/oclif/commit/5fdf1b0d622d8662d7cd33f975c1730e549e33b2)) + + + +## [1.14.1](https://github.com/oclif/oclif/compare/v1.14.0...v1.14.1) (2019-10-22) + + +### Bug Fixes + +* update oclif deps ([fec3106](https://github.com/oclif/oclif/commit/fec3106ba1fbd4c37fcc5dc97472c9ada549a014)) + + + +# [1.14.0](https://github.com/oclif/oclif/compare/v1.13.6...v1.14.0) (2019-10-07) + + + +## [1.13.6](https://github.com/oclif/oclif/compare/v1.13.5...v1.13.6) (2019-08-28) + + +### Bug Fixes + +* update README Requirements ([f2bd11e](https://github.com/oclif/oclif/commit/f2bd11ee7d05f4eb3714a6a928c48040af1a4d51)) + + + +## [1.13.5](https://github.com/oclif/oclif/compare/v1.13.4...v1.13.5) (2019-07-12) + + +### Bug Fixes + +* update globby ([#259](https://github.com/oclif/oclif/issues/259)) ([468985e](https://github.com/oclif/oclif/commit/468985edca04831900a69b1bb48498e92b3dc889)) + + + +## [1.13.4](https://github.com/oclif/oclif/compare/v1.13.3...v1.13.4) (2019-06-20) + + +### Bug Fixes + +* use correct path separators in travis.yml ([#248](https://github.com/oclif/oclif/issues/248)) ([ec41aa5](https://github.com/oclif/oclif/commit/ec41aa5c97c49257cd8006b2554d671b52de029f)) + + + +## [1.13.3](https://github.com/oclif/oclif/compare/v1.13.2...v1.13.3) (2019-06-17) + + +### Bug Fixes + +* set "composite": false ([#247](https://github.com/oclif/oclif/issues/247)) ([25fde1c](https://github.com/oclif/oclif/commit/25fde1c4ab6a5c36b8f8300831ba9cd5f8b25e41)) + + + +## [1.13.2](https://github.com/oclif/oclif/compare/v1.13.1...v1.13.2) (2019-05-29) + + +### Bug Fixes + +* update license template copyright year ([9cfaea8](https://github.com/oclif/oclif/commit/9cfaea817efee4ab759dc3c2d85bd124bd565436)) + + + +## [1.13.1](https://github.com/oclif/oclif/compare/v1.13.0...v1.13.1) (2019-03-24) + + +### Bug Fixes + +* test on node 10 ([cf10522](https://github.com/oclif/oclif/commit/cf10522437dfa01d6fb8aeedddf58752db34eb41)) + + + +# [1.13.0](https://github.com/oclif/oclif/compare/v1.12.10...v1.13.0) (2019-03-17) + + +### Features + +* Added Travis CI Support ([#214](https://github.com/oclif/oclif/issues/214)) ([5a9d300](https://github.com/oclif/oclif/commit/5a9d30021749c4eec26516e535cf1d7b058640c3)) + + + +## [1.12.10](https://github.com/oclif/oclif/compare/v1.12.9...v1.12.10) (2019-02-12) + + +### Bug Fixes + +* don't include mocha types on no mocha ([#206](https://github.com/oclif/oclif/issues/206)) ([505c43b](https://github.com/oclif/oclif/commit/505c43b2a45cd7ec4e8e0e30e5742d12050f19dc)) + + + +## [1.12.9](https://github.com/oclif/oclif/compare/v1.12.8...v1.12.9) (2019-02-11) + + +### Bug Fixes + +* typescript@3.3 ([6ff355f](https://github.com/oclif/oclif/commit/6ff355f010a6c98bab93a053e60d9b61868ab18c)) + + + +## [1.12.8](https://github.com/oclif/oclif/compare/v1.12.7...v1.12.8) (2018-12-17) + + +### Bug Fixes + +* typescript@3.2 ([#197](https://github.com/oclif/oclif/issues/197)) ([07013c8](https://github.com/oclif/oclif/commit/07013c871e1fc4afee7e72a2c262aaeab19e7675)) + + + +## [1.12.7](https://github.com/oclif/oclif/compare/v1.12.6...v1.12.7) (2018-12-03) + + +### Bug Fixes + +* updated deps ([ffe8868](https://github.com/oclif/oclif/commit/ffe88680fdb03de2119b15f8e0513acc7d922df3)) + + + +## [1.12.6](https://github.com/oclif/oclif/compare/v1.12.5...v1.12.6) (2018-11-14) + + +### Bug Fixes + +* updated deps ([2ff77ed](https://github.com/oclif/oclif/commit/2ff77ed9f696fa95828f01e4942648d3486859ab)) + + + +## [1.12.5](https://github.com/oclif/oclif/compare/v1.12.4...v1.12.5) (2018-10-16) + + +### Bug Fixes + +* default to not using shrinkwrap ([902c350](https://github.com/oclif/oclif/commit/902c350cb9b728f2424ecfb3a8497a23485b67c4)) + + + +## [1.12.4](https://github.com/oclif/oclif/compare/v1.12.3...v1.12.4) (2018-10-13) + + +### Bug Fixes + +* remove greenkeeper badge ([9690390](https://github.com/oclif/oclif/commit/9690390110892af4b3a41e5989b1e5cbba4c2da5)) + + + +## [1.12.3](https://github.com/oclif/oclif/compare/v1.12.2...v1.12.3) (2018-10-13) + + +### Bug Fixes + +* prepack ([85c0a36](https://github.com/oclif/oclif/commit/85c0a362591359da7d752f275893a62773bebfa2)) + + + +## [1.12.2](https://github.com/oclif/oclif/compare/v1.12.1...v1.12.2) (2018-10-13) + + +### Bug Fixes + +* shrinkwrap ([7f86997](https://github.com/oclif/oclif/commit/7f869970b1e9d84de2e8c09b4eb2a6923332169b)) + + + +## [1.12.1](https://github.com/oclif/oclif/compare/v1.12.0...v1.12.1) (2018-09-15) + + +### Bug Fixes + +* source-map-register is not needed ([dfd3170](https://github.com/oclif/oclif/commit/dfd31701a0aa426c0d3f372de9c350620c0ccd91)) + + + +# [1.12.0](https://github.com/oclif/oclif/compare/v1.11.7...v1.12.0) (2018-09-15) + + +### Bug Fixes + +* break linters out into separate question ([a3edcd4](https://github.com/oclif/oclif/commit/a3edcd469599ca108d72d1898730e7d083d15324)) +* break linters out into separate question ([c8b05f8](https://github.com/oclif/oclif/commit/c8b05f825aebf314b178e3961ff636377ed2f238)) +* break yarn/npm into separate question ([3f80dea](https://github.com/oclif/oclif/commit/3f80dea3b226fb422875fbb1516afcc0aea9f07e)) +* remove unnecessary tsc calls ([85082b5](https://github.com/oclif/oclif/commit/85082b57b532a1cc5fc51d5275bc74c7957eab01)) + + +### Features + +* simplify nyc config ([86a2c52](https://github.com/oclif/oclif/commit/86a2c52735f2082eaf95c058f85b0cde36dc9d1e)) +* use typescript 3.0 project references ([3a9bf0f](https://github.com/oclif/oclif/commit/3a9bf0f866a0a41d9e61b0d461277df1c95e2f94)) + + + +## [1.11.7](https://github.com/oclif/oclif/compare/v1.11.6...v1.11.7) (2018-09-14) + + +### Bug Fixes + +* greenkeeper-lockfile no longer necessary ([8f55fd0](https://github.com/oclif/oclif/commit/8f55fd08415146b837267962a82518ac41118867)) + + + +## [1.11.6](https://github.com/oclif/oclif/compare/v1.11.5...v1.11.6) (2018-09-14) + + +### Bug Fixes + +* updated eslint and tslint ([c2ae997](https://github.com/oclif/oclif/commit/c2ae997e16bdefcb6b7036f63824df4bc9278b30)) + + + +## [1.11.5](https://github.com/oclif/oclif/compare/v1.11.4...v1.11.5) (2018-08-29) + + +### Bug Fixes + +* fixpack -> @oclif/fixpack ([a69c4be](https://github.com/oclif/oclif/commit/a69c4be0c6cd44052a0a850f270aa2cbedca59e0)) +* hide yarn output when not found ([a3897b1](https://github.com/oclif/oclif/commit/a3897b18290b9e3265e4cb25dacec93c26941cd2)) +* set project path for single CLIs ([3ec87bc](https://github.com/oclif/oclif/commit/3ec87bcef150ace5afb0159482e3762482373bdf)), closes [#161](https://github.com/oclif/oclif/issues/161) +* use @oclif/fixpack to fix audit warning ([0c2aa20](https://github.com/oclif/oclif/commit/0c2aa206e9802112c67c0df2c91ef580e165b274)) + + + +## [1.11.4](https://github.com/oclif/oclif/compare/v1.11.3...v1.11.4) (2018-08-22) + + +### Bug Fixes + +* updated yeoman and update warning ([deea525](https://github.com/oclif/oclif/commit/deea5254cbdeae23eb0a6d736f1f8797ec04efb6)) + + + +## [1.11.3](https://github.com/oclif/oclif/compare/v1.11.2...v1.11.3) (2018-08-22) + + +### Bug Fixes + +* update eslint to latest major in generator ([#152](https://github.com/oclif/oclif/issues/152)) ([7d72d21](https://github.com/oclif/oclif/commit/7d72d21e4592094be1d7c70d9e5d29a840e18175)) + + + +## [1.11.2](https://github.com/oclif/oclif/compare/v1.11.1...v1.11.2) (2018-08-17) + + +### Bug Fixes + +* use greenkeeper-lockfile@2 ([1e99237](https://github.com/oclif/oclif/commit/1e99237e6ce70e815b018ccb987aaa8f02b5e074)) + + + +## [1.11.1](https://github.com/oclif/oclif/compare/v1.11.0...v1.11.1) (2018-08-17) + + +### Bug Fixes + +* updated oclif and dev-cli ([e2adf70](https://github.com/oclif/oclif/commit/e2adf70f3a0a58aa79aa30a9eddf9ceb5c3aa15f)) + + + +# [1.11.0](https://github.com/oclif/oclif/compare/v1.10.3...v1.11.0) (2018-08-17) + + +### Bug Fixes + +* updated oclif ([edd7fd8](https://github.com/oclif/oclif/commit/edd7fd8884c6610ef0b95edf2c6d0e274725d8f6)) + + +### Features + +* typescript 3 and ts-node 7 ([9c58896](https://github.com/oclif/oclif/commit/9c58896a733467474917293ec996a21ff5e14c37)) + + + +## [1.10.3](https://github.com/oclif/oclif/compare/v1.10.2...v1.10.3) (2018-08-17) + + +### Bug Fixes + +* regenerate readme when adding command ([408705b](https://github.com/oclif/oclif/commit/408705b01ce7a889f18c02d53212df770e057974)) + + + +## [1.10.2](https://github.com/oclif/oclif/compare/v1.10.1...v1.10.2) (2018-08-17) + + +### Bug Fixes + +* generate readme ([185ef6c](https://github.com/oclif/oclif/commit/185ef6c0b3d3cb7fd7a98f7fbe31b2df4c66a2ec)) +* newlines in readme ([5281952](https://github.com/oclif/oclif/commit/5281952ce215564b0c2298c90701406432265f7b)) + + + +## [1.10.1](https://github.com/oclif/oclif/compare/v1.10.0...v1.10.1) (2018-08-17) + + +### Bug Fixes + +* add circleci,appveyor,codecov to examples ([5cc3f54](https://github.com/oclif/oclif/commit/5cc3f54e73071ba44ab29a2fc9d97604ed8bbb05)) +* always use --save with npm ([#149](https://github.com/oclif/oclif/issues/149)) ([151af6f](https://github.com/oclif/oclif/commit/151af6f1de188a7673158a05a14f264d200d0d6a)) + + + +# [1.10.0](https://github.com/oclif/oclif/compare/v1.9.0...v1.10.0) (2018-08-17) + + +### Features + +* make appveyor optional ([#138](https://github.com/oclif/oclif/issues/138)) ([74d17c1](https://github.com/oclif/oclif/commit/74d17c1d20350f740a534f0ca6b4303927450171)) +* make codecov optional ([#139](https://github.com/oclif/oclif/issues/139)) ([30c6aff](https://github.com/oclif/oclif/commit/30c6aff059d6056679214bb3a322c23896d1936c)) +* typescript 3.x ([5badc7a](https://github.com/oclif/oclif/commit/5badc7aca22aa618f30cff6e9cfed9056d94c2db)) + + + +# [1.9.0](https://github.com/oclif/oclif/compare/v1.8.6...v1.9.0) (2018-07-09) + + +### Features + +* make circleci optional ([#137](https://github.com/oclif/oclif/issues/137)) ([259d304](https://github.com/oclif/oclif/commit/259d30466b30a7542add620e63128cf0272dd289)) + + + +## [1.8.6](https://github.com/oclif/oclif/compare/v1.8.5...v1.8.6) (2018-07-02) + + +### Bug Fixes + +* updated deps ([6f71fed](https://github.com/oclif/oclif/commit/6f71fed14b0c38ffe125c0017a1f50c576d40e9d)) + + + +## [1.8.5](https://github.com/oclif/oclif/compare/v1.8.4...v1.8.5) (2018-06-16) + + +### Bug Fixes + +* remove shrinkwrap after publishing ([3a1441d](https://github.com/oclif/oclif/commit/3a1441deab5bd58927c51188831be214c02f24f6)) + + + +## [1.8.4](https://github.com/oclif/oclif/compare/v1.8.3...v1.8.4) (2018-06-14) + + +### Bug Fixes + +* js setups ([ab161e5](https://github.com/oclif/oclif/commit/ab161e5b60a5d350eb71683e94e0377e23c71b87)) + + + +## [1.8.3](https://github.com/oclif/oclif/compare/v1.8.2...v1.8.3) (2018-06-14) + + +### Bug Fixes + +* add shrinkwrap file ([819e971](https://github.com/oclif/oclif/commit/819e9716f0d9f7be987d14b9919fdaeb68e293dc)) + + + +## [1.8.2](https://github.com/oclif/oclif/compare/v1.8.1...v1.8.2) (2018-06-12) + + +### Bug Fixes + +* Add rimraf to devDependencies for single and multi projects and use it in npm scripts ([#123](https://github.com/oclif/oclif/issues/123)) ([764ade1](https://github.com/oclif/oclif/commit/764ade1dfcf99e3de74a9a93dc85cc24e3d927a0)) + + + +## [1.8.1](https://github.com/oclif/oclif/compare/v1.8.0...v1.8.1) (2018-06-10) + + +### Bug Fixes + +* updated deps ([50604af](https://github.com/oclif/oclif/commit/50604afbc47202c2d615cc2a878bcd0309400127)) + + + +# [1.8.0](https://github.com/oclif/oclif/compare/v1.7.56...v1.8.0) (2018-06-02) + + +### Features + +* add oclif badge ([620707c](https://github.com/oclif/oclif/commit/620707ce80a17f1ba0e4e3e447ad16128b81638a)) + + + +## [1.7.56](https://github.com/oclif/oclif/compare/v1.7.55...v1.7.56) (2018-06-01) + + +### Bug Fixes + +* nyc@12 ([8984592](https://github.com/oclif/oclif/commit/8984592f7b98329b9d3c9ba766f36e4310faee2d)) + + + +## [1.7.55](https://github.com/oclif/oclif/compare/v1.7.54...v1.7.55) (2018-06-01) + + +### Bug Fixes + +* add prepare step ([dd927fb](https://github.com/oclif/oclif/commit/dd927fb458bc30fc5606c10b12d7cf9f4ec8ba87)) +* remove es module config ([80ef22b](https://github.com/oclif/oclif/commit/80ef22b17bd96247b9d41ad2070e25d1ff3d185d)) +* updated deps ([64a13d1](https://github.com/oclif/oclif/commit/64a13d1ac091271ee4bf45a84aab51f7ae0da309)) +* updated fancy-test ([a58f942](https://github.com/oclif/oclif/commit/a58f9428e6c7f54873da4f771f665dec4842ecba)) + + + +## [1.7.54](https://github.com/oclif/oclif/compare/v1.7.53...v1.7.54) (2018-06-01) + + +### Bug Fixes + +* add tslib ([360924a](https://github.com/oclif/oclif/commit/360924ac89a358cbd0d88be47a794243bb9cfd0e)) +* path names for eslint ([64808b3](https://github.com/oclif/oclif/commit/64808b302f741670ac05cae09c774b23c8c4c434)) +* typescript 2.9 ([0774d0f](https://github.com/oclif/oclif/commit/0774d0fd024451198be2145a6280a673b3442477)) + + + +## [1.7.53](https://github.com/oclif/oclif/compare/v1.7.52...v1.7.53) (2018-05-31) + + +### Bug Fixes + +* typescript 2.9 ([3c2b1ea](https://github.com/oclif/oclif/commit/3c2b1ea73c066a81b233eb2366bd72a371c1d177)) + + + +## [1.7.52](https://github.com/oclif/oclif/compare/v1.7.51...v1.7.52) (2018-05-30) + + +### Bug Fixes + +* command descriptions not showing up in the help ([#124](https://github.com/oclif/oclif/issues/124)) ([dd37310](https://github.com/oclif/oclif/commit/dd37310b8231cda76fd240fb3b7c329e40acf3ca)) + + + +## [1.7.51](https://github.com/oclif/oclif/compare/v1.7.50...v1.7.51) (2018-05-28) + + +### Bug Fixes + +* updated deps ([ff3efd0](https://github.com/oclif/oclif/commit/ff3efd0093362668bacea035d57eab894f74d732)) + + + +## [1.7.50](https://github.com/oclif/oclif/compare/v1.7.49...v1.7.50) (2018-05-24) + + +### Bug Fixes + +* add yarn.lock to npm files for plugins ([06f5893](https://github.com/oclif/oclif/commit/06f5893410d8fe5bf3902f0d837d28dd7e279a7d)) + + + +## [1.7.49](https://github.com/oclif/oclif/compare/v1.7.48...v1.7.49) (2018-05-22) + + +### Bug Fixes + +* use explicit typeRoot path ([dad2052](https://github.com/oclif/oclif/commit/dad20528d806dc87cae8077bce0dc6ba1dc31b79)) + + + +## [1.7.48](https://github.com/oclif/oclif/compare/v1.7.47...v1.7.48) (2018-05-22) + + +### Bug Fixes + +* bust circle cache ([7702f90](https://github.com/oclif/oclif/commit/7702f9041c29a4090d294807e75bd63d8f5a56dd)) + + + +## [1.7.47](https://github.com/oclif/oclif/compare/v1.7.46...v1.7.47) (2018-05-22) + + +### Bug Fixes + +* updated deps ([1668568](https://github.com/oclif/oclif/commit/16685687ce7dd193c1907731569d5833f5476c76)) + + + +## [1.7.46](https://github.com/oclif/oclif/compare/v1.7.45...v1.7.46) (2018-05-14) + + +### Bug Fixes + +* updated deps ([6077f5a](https://github.com/oclif/oclif/commit/6077f5a4c5d2d41921e9c73477bd6834f14cd77c)) + + + +## [1.7.45](https://github.com/oclif/oclif/compare/v1.7.44...v1.7.45) (2018-05-13) + + +### Bug Fixes + +* flush stdout on exit ([69c0e3e](https://github.com/oclif/oclif/commit/69c0e3e4532b10e27f8c13a3075673a2a6aa2a1b)) + + + +## [1.7.44](https://github.com/oclif/oclif/compare/v1.7.43...v1.7.44) (2018-05-11) + + +### Bug Fixes + +* move tslib to dependencies ([2e35528](https://github.com/oclif/oclif/commit/2e35528a7e0f32a67230c78029772deca760a07d)) + + + +## [1.7.43](https://github.com/oclif/oclif/compare/v1.7.42...v1.7.43) (2018-05-11) + + +### Bug Fixes + +* use author for license ([2b28a35](https://github.com/oclif/oclif/commit/2b28a35d2ab39bf3410dcf9bf65f35c564827e39)) + + + +## [1.7.42](https://github.com/oclif/oclif/compare/v1.7.41...v1.7.42) (2018-05-10) + + +### Bug Fixes + +* @typs/node@10 ([e9b6991](https://github.com/oclif/oclif/commit/e9b6991bb0b7fdf2d800977add57a2c4f0ec9624)) + + + +## [1.7.41](https://github.com/oclif/oclif/compare/v1.7.40...v1.7.41) (2018-05-10) + + +### Bug Fixes + +* updated deps ([663d802](https://github.com/oclif/oclif/commit/663d80284ab9021d1e9212c06053c80efacd8873)) + + + +## [1.7.40](https://github.com/oclif/oclif/compare/v1.7.39...v1.7.40) (2018-05-07) + + +### Bug Fixes + +* ts-node 6 ([98580b1](https://github.com/oclif/oclif/commit/98580b1729606fed0796ccdcaaad767a404925ad)) + + + +## [1.7.39](https://github.com/oclif/oclif/compare/v1.7.38...v1.7.39) (2018-05-07) + + +### Bug Fixes + +* use caret versions ([8f582e8](https://github.com/oclif/oclif/commit/8f582e83adad096b329677f9f51f120fcdca6001)) + + + +## [1.7.38](https://github.com/oclif/oclif/compare/v1.7.37...v1.7.38) (2018-05-04) + + +### Bug Fixes + +* updated deps ([680381b](https://github.com/oclif/oclif/commit/680381bb8375ef6a0af7db86267b86ff79a53da0)) + + + +## [1.7.37](https://github.com/oclif/oclif/compare/v1.7.36...v1.7.37) (2018-05-03) + + +### Bug Fixes + +* rename oclif manifest to not be a dotfile ([84d16a2](https://github.com/oclif/oclif/commit/84d16a21ecabcc89b21a036728f25a23d1da50a5)) + + + +## [1.7.36](https://github.com/oclif/oclif/compare/v1.7.35...v1.7.36) (2018-05-01) + + +### Bug Fixes + +* updated deps ([7bc00db](https://github.com/oclif/oclif/commit/7bc00db94bdd9f7efa24b2f12bc4a0a01fa1f2d0)) + + + +## [1.7.35](https://github.com/oclif/oclif/compare/v1.7.34...v1.7.35) (2018-04-21) + + +### Bug Fixes + +* updated deps ([e5a8ad7](https://github.com/oclif/oclif/commit/e5a8ad7aed7131aaecc082b20e0f5b3655cad1e4)) + + + +## [1.7.34](https://github.com/oclif/oclif/compare/v1.7.33...v1.7.34) (2018-04-20) + + +### Bug Fixes + +* only add root manifest ([e09b530](https://github.com/oclif/oclif/commit/e09b530c76ecd1a5cf937b2a92e1730d0c780352)) + + + +## [1.7.33](https://github.com/oclif/oclif/compare/v1.7.32...v1.7.33) (2018-04-20) + + +### Bug Fixes + +* gitignore nyc_output ([270c5ef](https://github.com/oclif/oclif/commit/270c5ef93c1d05d4937b9edd9e826748bcb2ca61)) + + + +## [1.7.32](https://github.com/oclif/oclif/compare/v1.7.31...v1.7.32) (2018-04-18) + + +### Bug Fixes + +* use npm instead of yarn in CI scripts when not using yarn ([#108](https://github.com/oclif/oclif/issues/108)) ([04fc972](https://github.com/oclif/oclif/commit/04fc97260750ba144710e243c0404a284141d42d)) + + + +## [1.7.31](https://github.com/oclif/oclif/compare/v1.7.30...v1.7.31) (2018-04-17) + + +### Bug Fixes + +* updated deps ([447acaa](https://github.com/oclif/oclif/commit/447acaaf921c2fb499b9287f8fe22b448655b2b3)) + + + +## [1.7.30](https://github.com/oclif/oclif/compare/v1.7.29...v1.7.30) (2018-04-10) + + +### Bug Fixes + +* break up code coverage into its own step ([0f2ecae](https://github.com/oclif/oclif/commit/0f2ecaec84d0773f8b506feaf4bca05c63304d41)) + + + +## [1.7.29](https://github.com/oclif/oclif/compare/v1.7.28...v1.7.29) (2018-04-10) + + +### Bug Fixes + +* remove junit reporter from circle ([1927369](https://github.com/oclif/oclif/commit/1927369bcfd62d1ade4bbda7cd8ae32d1331331f)) + + + +## [1.7.28](https://github.com/oclif/oclif/compare/v1.7.27...v1.7.28) (2018-04-09) + + +### Bug Fixes + +* add another command to multi examples ([3fc97ec](https://github.com/oclif/oclif/commit/3fc97ec33bbbb008b25fd48e4e08b099ff989d64)) +* command example generation ([41c00ca](https://github.com/oclif/oclif/commit/41c00cabef73e10268d3d48b74c875715ef6bc2d)) + + + +## [1.7.27](https://github.com/oclif/oclif/compare/v1.7.26...v1.7.27) (2018-04-09) + + +### Bug Fixes + +* generate readme before packing ([fe9be07](https://github.com/oclif/oclif/commit/fe9be07cf22d70741a5e28a7d5b2c147b18d64ff)) + + + +## [1.7.26](https://github.com/oclif/oclif/compare/v1.7.25...v1.7.26) (2018-04-09) + + +### Bug Fixes + +* add descriptions for circle tasks ([494d6ac](https://github.com/oclif/oclif/commit/494d6ac0e7bb3ccf306578ab47f751d813b122a9)) + + + +## [1.7.25](https://github.com/oclif/oclif/compare/v1.7.24...v1.7.25) (2018-04-09) + + +### Bug Fixes + +* add descriptions for circle tasks ([de4f924](https://github.com/oclif/oclif/commit/de4f9249e1ab2239a7fb55406c0fa05808c42448)) + + + +## [1.7.24](https://github.com/oclif/oclif/compare/v1.7.23...v1.7.24) (2018-04-08) + + +### Bug Fixes + +* lock down deps ([ac95a07](https://github.com/oclif/oclif/commit/ac95a07286e902fceed384694a8d56a70d75cb51)) + + + +## [1.7.23](https://github.com/oclif/oclif/compare/v1.7.22...v1.7.23) (2018-04-08) + + +### Bug Fixes + +* command path on windows ([#96](https://github.com/oclif/oclif/issues/96)) ([612f401](https://github.com/oclif/oclif/commit/612f401aa2f4a4915b2dd46b6f57cc6ceff0e213)) +* ignore any node_modules directories ([ceb13f2](https://github.com/oclif/oclif/commit/ceb13f28369d2651a467ea769d1fdf94731f1111)) +* ignore package-lock.json ([8cb8582](https://github.com/oclif/oclif/commit/8cb8582fc24bf1373292bacd42fcaf03b555bce2)) +* skip eslint files when using typescript ([7dec822](https://github.com/oclif/oclif/commit/7dec822dda4b56e626b078a93c595c45e0b0cc10)) + + + +## [1.7.22](https://github.com/oclif/oclif/compare/v1.7.21...v1.7.22) (2018-04-08) + + +### Bug Fixes + +* fixed lint issues ([3048e06](https://github.com/oclif/oclif/commit/3048e069a714ff32c197d3f467e04235c0663e95)) +* remove unneeded script ([016849f](https://github.com/oclif/oclif/commit/016849f9df6bce63aff7faaf4c09aaa5330300d3)) + + + +## [1.7.21](https://github.com/oclif/oclif/compare/v1.7.20...v1.7.21) (2018-04-08) + + +### Bug Fixes + +* simplify npm script usage ([8e17b32](https://github.com/oclif/oclif/commit/8e17b321226ff8c05436be6c7ff2cbf897eaece3)) +* simplify npm script usage ([417cd49](https://github.com/oclif/oclif/commit/417cd49b96c5d7ba8a70c078e16c83ed537425eb)) +* use npm pack in test ([7474932](https://github.com/oclif/oclif/commit/74749323dc1e857ea12de995028dcd38e206cd24)) +* use npm pack in test ([1a4de12](https://github.com/oclif/oclif/commit/1a4de12085105a23fe1d31ba50389903e25492d3)) + + + +## [1.7.20](https://github.com/oclif/oclif/compare/v1.7.19...v1.7.20) (2018-04-08) + + +### Bug Fixes + +* define help flag on initial command ([e1b68a3](https://github.com/oclif/oclif/commit/e1b68a3485198c6116330278864eb333feac12dd)) + + + +## [1.7.19](https://github.com/oclif/oclif/compare/v1.7.18...v1.7.19) (2018-04-07) + + +### Bug Fixes + +* gitignore /dist ([d0bb4f0](https://github.com/oclif/oclif/commit/d0bb4f0816a5b6d5ca9b7f5b9bff599a51ef8ddf)) + + + +## [1.7.18](https://github.com/oclif/oclif/compare/v1.7.17...v1.7.18) (2018-04-07) + + +### Bug Fixes + +* use posttest instead of lint script ([48516e1](https://github.com/oclif/oclif/commit/48516e15f159fd24e36ab18bad1b1d7968473430)) + + + +## [1.7.17](https://github.com/oclif/oclif/compare/v1.7.16...v1.7.17) (2018-04-06) + + +### Bug Fixes + +* set repository to input ([276ac06](https://github.com/oclif/oclif/commit/276ac06557b788e92107e60a722029cf0954100f)) + + + +## [1.7.16](https://github.com/oclif/oclif/compare/v1.7.15...v1.7.16) (2018-04-06) + + +### Bug Fixes + +* remove declarations from test tslint ([3d8181b](https://github.com/oclif/oclif/commit/3d8181ba1d54062e2bfe5c47487720d4e4b49333)) + + + +## [1.7.15](https://github.com/oclif/oclif/compare/v1.7.14...v1.7.15) (2018-04-06) + + +### Bug Fixes + +* use package-lock.json or yarn.lock from root only ([9cb57ac](https://github.com/oclif/oclif/commit/9cb57acf2f7f64f8a0d7e27c4dd14832631c20de)) + + + +## [1.7.14](https://github.com/oclif/oclif/compare/v1.7.13...v1.7.14) (2018-04-05) + + +### Bug Fixes + +* ignore package-lock.json or yarn.lock ([e589f0a](https://github.com/oclif/oclif/commit/e589f0a0057782ce20f423499c5d4f52d643030f)) + + + +## [1.7.13](https://github.com/oclif/oclif/compare/v1.7.12...v1.7.13) (2018-04-04) + + +### Bug Fixes + +* fixed commands directory in example ([2d8b964](https://github.com/oclif/oclif/commit/2d8b964a67420048779a92b35436a704fdd9f9ac)) + + + +## [1.7.12](https://github.com/oclif/oclif/compare/v1.7.11...v1.7.12) (2018-04-04) + + +### Bug Fixes + +* only show examples if generating hello command ([147a317](https://github.com/oclif/oclif/commit/147a317758f3dbc0101c5c2770f9cda09b6b6caf)) +* show ts path in example command instead of js path ([12869c4](https://github.com/oclif/oclif/commit/12869c4c0e66f7be8e9b1f70d06de71aa15e0b01)) + + + +## [1.7.11](https://github.com/oclif/oclif/compare/v1.7.10...v1.7.11) (2018-04-02) + + +### Bug Fixes + +* **generators/command:** assert cwd is a project ([#94](https://github.com/oclif/oclif/issues/94)) ([192f268](https://github.com/oclif/oclif/commit/192f26851cc13ff4da292f06861ea9317f632ba6)) + + + +## [1.7.10](https://github.com/oclif/oclif/compare/v1.7.9...v1.7.10) (2018-03-28) + + +### Bug Fixes + +* remove commitlint from this project ([#87](https://github.com/oclif/oclif/issues/87)) ([beb4b4e](https://github.com/oclif/oclif/commit/beb4b4ee29528602305a4e9f61de062c3d80fb85)) + + + +## [1.7.9](https://github.com/oclif/oclif/compare/v1.7.8...v1.7.9) (2018-03-25) + + +### Bug Fixes + +* move release script into semantic-release ([020e633](https://github.com/oclif/oclif/commit/020e633eab2e7133a2526bfef8fe5c6fc54dfb4a)) + + + +## [1.7.8](https://github.com/oclif/oclif/compare/v1.7.7...v1.7.8) (2018-03-25) ### Bug Fixes -* updated deps ([1668568](https://github.com/oclif/oclif/commit/1668568)) +* automate create-oclif publishing ([bffcc90](https://github.com/oclif/oclif/commit/bffcc902704876c3cbfe3cf942e8e5f206c872d9)) - -## [1.7.46](https://github.com/oclif/oclif/compare/v1.7.45...v1.7.46) (2018-05-14) + + +## [1.7.7](https://github.com/oclif/oclif/compare/v1.7.6...v1.7.7) (2018-03-25) ### Bug Fixes -* updated deps ([6077f5a](https://github.com/oclif/oclif/commit/6077f5a)) +* updated command ([bd7921f](https://github.com/oclif/oclif/commit/bd7921fb700d15d7be0716ea980e4edd35fbaa2b)) - -## [1.7.45](https://github.com/oclif/oclif/compare/v1.7.44...v1.7.45) (2018-05-13) + + +## [1.7.6](https://github.com/oclif/oclif/compare/v1.7.5...v1.7.6) (2018-03-24) ### Bug Fixes -* flush stdout on exit ([69c0e3e](https://github.com/oclif/oclif/commit/69c0e3e)) +* updated config and warn-if-update-available ([db21fca](https://github.com/oclif/oclif/commit/db21fcab9426f322ad642fe04b8b9f072d135354)) - -## [1.7.44](https://github.com/oclif/oclif/compare/v1.7.43...v1.7.44) (2018-05-11) + + +## [1.7.5](https://github.com/oclif/oclif/compare/v1.7.4...v1.7.5) (2018-03-24) ### Bug Fixes -* move tslib to dependencies ([2e35528](https://github.com/oclif/oclif/commit/2e35528)) +* add warning if CLI is out of date ([fa5ed18](https://github.com/oclif/oclif/commit/fa5ed182599da48c2002fecf7feedf241444797c)) - -## [1.7.43](https://github.com/oclif/oclif/compare/v1.7.42...v1.7.43) (2018-05-11) + + +## [1.7.4](https://github.com/oclif/oclif/compare/v1.7.3...v1.7.4) (2018-03-24) ### Bug Fixes -* use author for license ([2b28a35](https://github.com/oclif/oclif/commit/2b28a35)) +* updated plugin-help ([19df489](https://github.com/oclif/oclif/commit/19df489a74e27875e739bbbe680642dd21ab8cda)) - -## [1.7.42](https://github.com/oclif/oclif/compare/v1.7.41...v1.7.42) (2018-05-10) + + +## [1.7.3](https://github.com/oclif/oclif/compare/v1.7.2...v1.7.3) (2018-03-24) ### Bug Fixes -* [@typs](https://github.com/typs)/node@10 ([e9b6991](https://github.com/oclif/oclif/commit/e9b6991)) +* add hook to circle ([a4da315](https://github.com/oclif/oclif/commit/a4da31538acb74eeac8dbd797de35e71398c2ded)) +* fixed hook circle config test ([3f4ab92](https://github.com/oclif/oclif/commit/3f4ab928546aa5bd33c4eccc4b698a3c7b289b81)) +* updated plugin-help ([cb53bb3](https://github.com/oclif/oclif/commit/cb53bb38120a6e3c4db3fbc0cfc349d71722037b)) - -## [1.7.41](https://github.com/oclif/oclif/compare/v1.7.40...v1.7.41) (2018-05-10) + + +## [1.7.2](https://github.com/oclif/oclif/compare/v1.7.1...v1.7.2) (2018-03-24) ### Bug Fixes -* updated deps ([663d802](https://github.com/oclif/oclif/commit/663d802)) +* add yarn to examples ([b4cd8b3](https://github.com/oclif/oclif/commit/b4cd8b3ce32bf2a4a6af6eb3c3ecdb4ebb4d9259)) +* fixed semantic-release config ([a4f69f1](https://github.com/oclif/oclif/commit/a4f69f1462fc617c515f5c9ec625447ff4198257)) +* update semantic-release ([9f45593](https://github.com/oclif/oclif/commit/9f4559333bb75f9dea690f58235f5528b816059b)) +* update semantic-release ([d2e3159](https://github.com/oclif/oclif/commit/d2e3159233be3841777125ed66c412187460df7e)) + - -## [1.7.40](https://github.com/oclif/oclif/compare/v1.7.39...v1.7.40) (2018-05-07) + +## [1.7.1](https://github.com/oclif/oclif/compare/v1.7.0...v1.7.1) (2018-03-24) ### Bug Fixes -* ts-node 6 ([98580b1](https://github.com/oclif/oclif/commit/98580b1)) +* remove commitlint ([#83](https://github.com/oclif/oclif/issues/83)) ([b5c6327](https://github.com/oclif/oclif/commit/b5c6327dac2afe91957c8add54b56ad83c58837d)) - -## [1.7.39](https://github.com/oclif/oclif/compare/v1.7.38...v1.7.39) (2018-05-07) + + +# [1.7.0](https://github.com/oclif/oclif/compare/v1.6.0...v1.7.0) (2018-03-24) + + +### Features + +* removes snyk readme template badge ([#80](https://github.com/oclif/oclif/issues/80)) ([7b68361](https://github.com/oclif/oclif/commit/7b683610ea2e5f16d622a0b7ebb6b9d2ee484b07)), closes [oclif/oclif#69](https://github.com/oclif/oclif/issues/69) + + + +# [1.6.0](https://github.com/oclif/oclif/compare/v1.5.8...v1.6.0) (2018-03-24) + + +### Features + +* removes greenkeeper readme template badge ([#81](https://github.com/oclif/oclif/issues/81)) ([c45448e](https://github.com/oclif/oclif/commit/c45448e97858b789a91f765c631c91c7f8263f9f)), closes [oclif/oclif#70](https://github.com/oclif/oclif/issues/70) + + + +## [1.5.8](https://github.com/oclif/oclif/compare/v1.5.7...v1.5.8) (2018-03-24) ### Bug Fixes -* use caret versions ([8f582e8](https://github.com/oclif/oclif/commit/8f582e8)) +* fix hooks to work with ts-node ([e117a85](https://github.com/oclif/oclif/commit/e117a8559b1ad84c8110df71906ca4c975ab529f)), closes [#78](https://github.com/oclif/oclif/issues/78) + - -## [1.7.38](https://github.com/oclif/oclif/compare/v1.7.37...v1.7.38) (2018-05-04) + +## [1.5.7](https://github.com/oclif/oclif/compare/v1.5.6...v1.5.7) (2018-03-24) ### Bug Fixes -* updated deps ([680381b](https://github.com/oclif/oclif/commit/680381b)) +* fixed yarn detection ([214be06](https://github.com/oclif/oclif/commit/214be061c7f17287a12474e0dff4d39cc63e8109)) - -## [1.7.37](https://github.com/oclif/oclif/compare/v1.7.36...v1.7.37) (2018-05-03) + + +## [1.5.6](https://github.com/oclif/oclif/compare/v1.5.5...v1.5.6) (2018-03-24) ### Bug Fixes -* rename oclif manifest to not be a dotfile ([84d16a2](https://github.com/oclif/oclif/commit/84d16a2)) +* updated command/config ([e6446ca](https://github.com/oclif/oclif/commit/e6446ca65238f4ab21f3e30f0391bf4e49cc6f95)) + - -## [1.7.36](https://github.com/oclif/oclif/compare/v1.7.35...v1.7.36) (2018-05-01) + +## [1.5.5](https://github.com/oclif/oclif/compare/v1.5.4...v1.5.5) (2018-03-24) ### Bug Fixes -* updated deps ([7bc00db](https://github.com/oclif/oclif/commit/7bc00db)) +* fixed npm devDependencies ([1957935](https://github.com/oclif/oclif/commit/19579350dadf5007c5155cd9c41834345acb17f3)) +* move globby to devDependencies ([9f07b24](https://github.com/oclif/oclif/commit/9f07b248cc0c481a3b96961a04ec2f511f76268d)) - -## [1.7.35](https://github.com/oclif/oclif/compare/v1.7.34...v1.7.35) (2018-04-21) + + +## [1.5.4](https://github.com/oclif/oclif/compare/v1.5.3...v1.5.4) (2018-03-24) ### Bug Fixes -* updated deps ([e5a8ad7](https://github.com/oclif/oclif/commit/e5a8ad7)) +* @oclif/errors no longer directly required ([c82d5f4](https://github.com/oclif/oclif/commit/c82d5f484a425261cbe28692aabc3c30b5827550)) + - -## [1.7.34](https://github.com/oclif/oclif/compare/v1.7.33...v1.7.34) (2018-04-20) + +## [1.5.3](https://github.com/oclif/oclif/compare/v1.5.2...v1.5.3) (2018-03-24) ### Bug Fixes -* only add root manifest ([e09b530](https://github.com/oclif/oclif/commit/e09b530)) +* updated deps ([367e189](https://github.com/oclif/oclif/commit/367e189144af37df10373e4a20e9d22106e97e29)) - -## [1.7.33](https://github.com/oclif/oclif/compare/v1.7.32...v1.7.33) (2018-04-20) + + +## [1.5.2](https://github.com/oclif/oclif/compare/v1.5.1...v1.5.2) (2018-03-23) ### Bug Fixes -* gitignore nyc_output ([270c5ef](https://github.com/oclif/oclif/commit/270c5ef)) +* updated dev-cli ([90ffc41](https://github.com/oclif/oclif/commit/90ffc41943efe6c0de36d8793097581737c7a5b5)) + - -## [1.7.32](https://github.com/oclif/oclif/compare/v1.7.31...v1.7.32) (2018-04-18) + +## [1.5.1](https://github.com/oclif/oclif/compare/v1.5.0...v1.5.1) (2018-03-23) ### Bug Fixes -* use npm instead of yarn in CI scripts when not using yarn ([#108](https://github.com/oclif/oclif/issues/108)) ([04fc972](https://github.com/oclif/oclif/commit/04fc972)) +* add usage/command headers explicitly ([d24456b](https://github.com/oclif/oclif/commit/d24456ba28f0ea2d4e392dda30a4543a461fc6c5)) - -## [1.7.31](https://github.com/oclif/oclif/compare/v1.7.30...v1.7.31) (2018-04-17) -### Bug Fixes +# [1.5.0](https://github.com/oclif/oclif/compare/v1.4.12...v1.5.0) (2018-03-23) + + +### Features + +* add hook generator ([#77](https://github.com/oclif/oclif/issues/77)) ([4106708](https://github.com/oclif/oclif/commit/4106708e3fa2332fcada0361c76a1071f61315a8)) + + + +## [1.4.12](https://github.com/oclif/oclif/compare/v1.4.11...v1.4.12) (2018-03-23) + + +### Bug Fixes + +* document yarn flag ([f833799](https://github.com/oclif/oclif/commit/f8337999b5a22cbe9bfa90a7d7a026a1a15a333b)) + + + +## [1.4.11](https://github.com/oclif/oclif/compare/v1.4.10...v1.4.11) (2018-03-23) + + +### Bug Fixes + +* move docs to oclif.io ([43ebeba](https://github.com/oclif/oclif/commit/43ebebaec031697f7e1595e79771d15c76e11cd6)) +* move docs to oclif.io ([c067401](https://github.com/oclif/oclif/commit/c067401cce09b8f425826c05f11c4266f842bd40)) + + + +## [1.4.10](https://github.com/oclif/oclif/compare/v1.4.9...v1.4.10) (2018-03-22) + + +### Bug Fixes + +* use npm for scripts if not yarn ([01370d2](https://github.com/oclif/oclif/commit/01370d252da66e25b80a2947ec38e4db21101a61)) + + + +## [1.4.9](https://github.com/oclif/oclif/compare/v1.4.7...v1.4.9) (2018-03-22) + + +### Bug Fixes + +* make yarn optional ([#76](https://github.com/oclif/oclif/issues/76)) ([7157660](https://github.com/oclif/oclif/commit/71576609c182f8fbffbffdf408671c5cb9c4a0b6)) +* only need 1 example ([5ef966f](https://github.com/oclif/oclif/commit/5ef966fc1f4165983c9ff6ca8250e7e5d61c79bf)) + + + +## [1.4.7](https://github.com/oclif/oclif/compare/v1.4.6...v1.4.7) (2018-03-22) + + +### Bug Fixes + +* add path argument description ([c37e724](https://github.com/oclif/oclif/commit/c37e72480dcf740dc1ef1708ad09552672238208)) + + + +## [1.4.6](https://github.com/oclif/oclif/compare/v1.4.5...v1.4.6) (2018-03-22) + + +### Bug Fixes + +* build manifest ([241741a](https://github.com/oclif/oclif/commit/241741aedd890b37be615972da35f02596cde082)) + + + +## [1.4.5](https://github.com/oclif/oclif/compare/v1.4.4...v1.4.5) (2018-03-22) + + +### Bug Fixes + +* set OCLIF_NEXT_VERSION ([032b231](https://github.com/oclif/oclif/commit/032b2319d756e0817f96c6311cbaa3a027f6b0e2)) + + + +## [1.4.4](https://github.com/oclif/oclif/compare/v1.4.3...v1.4.4) (2018-03-22) + + +### Bug Fixes + +* set OCLIF_NEXT_VERSION ([4d774b1](https://github.com/oclif/oclif/commit/4d774b17451c873cb736c8d458b884a4d2916474)) + + + +## [1.4.3](https://github.com/oclif/oclif/compare/v1.4.1...v1.4.3) (2018-03-22) + + +### Bug Fixes + +* updated dev-cli ([f9a733a](https://github.com/oclif/oclif/commit/f9a733a0c78d4f9e2a8a22d3fc7320cf2d978398)) +* updated dev-cli ([c9307e7](https://github.com/oclif/oclif/commit/c9307e7e986a44e5882d29bee5e0ffaca266834b)) + + + +## [1.4.1](https://github.com/oclif/oclif/compare/v1.4.0...v1.4.1) (2018-03-21) + + +### Bug Fixes + +* remove noUnusedLocals and noUnusedParameters as these are checked with tslint ([06e2c46](https://github.com/oclif/oclif/commit/06e2c4615151abf37b30d4ff20b1f9b2e476ace8)) + + + +# [1.4.0](https://github.com/oclif/oclif/compare/v1.3.14...v1.4.0) (2018-03-21) + + +### Features + +* add tslint component option ([#63](https://github.com/oclif/oclif/issues/63)) ([e3a7943](https://github.com/oclif/oclif/commit/e3a7943855ffbe96de697541025a90cf59194076)) + + + +## [1.3.14](https://github.com/oclif/oclif/compare/v1.3.13...v1.3.14) (2018-03-21) + + +### Bug Fixes + +* add -h and -v flags for single ([#62](https://github.com/oclif/oclif/issues/62)) ([009490b](https://github.com/oclif/oclif/commit/009490b5de98bb9e71874abee253eb1be85f38d1)) + + + +## [1.3.13](https://github.com/oclif/oclif/compare/v1.3.12...v1.3.13) (2018-03-21) + + +### Bug Fixes + +* use version long flag for circle test ([#61](https://github.com/oclif/oclif/issues/61)) ([6497188](https://github.com/oclif/oclif/commit/64971883b1df554d06a13a8242694f34c517b1e6)) + + + +## [1.3.12](https://github.com/oclif/oclif/compare/v1.3.11...v1.3.12) (2018-03-21) + + +### Bug Fixes + +* readme template ([#60](https://github.com/oclif/oclif/issues/60)) ([d91482b](https://github.com/oclif/oclif/commit/d91482b5a701198d554bde2495be924ece3486cc)) + + + +## [1.3.11](https://github.com/oclif/oclif/compare/v1.3.10...v1.3.11) (2018-03-20) + + +### Bug Fixes + +* bump dependencies ([edacb13](https://github.com/oclif/oclif/commit/edacb134324c59c5a778ff3fd870804800662eeb)) + + + +## [1.3.10](https://github.com/oclif/oclif/compare/v1.3.9...v1.3.10) (2018-03-15) + + +### Bug Fixes + +* return a promise from yeoman callback style so it actually awaits ([#43](https://github.com/oclif/oclif/issues/43)) ([c22f423](https://github.com/oclif/oclif/commit/c22f423a73ba134afb1087b125413de6fb5a223e)) + + + +## [1.3.9](https://github.com/oclif/oclif/compare/v1.3.8...v1.3.9) (2018-03-08) + + +### Bug Fixes + +* add component descriptions and option to skip ([25cf71e](https://github.com/oclif/oclif/commit/25cf71ede5a8235a70a1c54eedd5c23a971df003)) + + + +## [1.3.8](https://github.com/oclif/oclif/compare/v1.3.7...v1.3.8) (2018-02-28) + + +### Bug Fixes + +* fixed ts-node compatibility ([a45f405](https://github.com/oclif/oclif/commit/a45f4058f9492d8c7cb7cf4a6906a709b34165e9)) + + + +## [1.3.7](https://github.com/oclif/oclif/compare/v1.3.6...v1.3.7) (2018-02-17) + + +### Bug Fixes + +* updated help ([0d6ab82](https://github.com/oclif/oclif/commit/0d6ab82e4db4f99e28273af25425fc9f3919334d)) + + + +## [1.3.6](https://github.com/oclif/oclif/compare/v1.3.5...v1.3.6) (2018-02-17) + + +### Bug Fixes + +* show full path to file ([c9741f7](https://github.com/oclif/oclif/commit/c9741f7ac908f44d963dadda9c19aa1a50fd0ad6)) + + + +## [1.3.5](https://github.com/oclif/oclif/compare/v1.3.4...v1.3.5) (2018-02-17) + + +### Bug Fixes + +* updated command ([3ffd29a](https://github.com/oclif/oclif/commit/3ffd29af6122becb6f9006df364c5092ef9fad08)) + + + +## [1.3.4](https://github.com/oclif/oclif/compare/v1.3.3...v1.3.4) (2018-02-15) + + +### Bug Fixes + +* updated dev-cli ([8359976](https://github.com/oclif/oclif/commit/8359976eda2665452ecb138291355444ab699809)) + + + +## [1.3.3](https://github.com/oclif/oclif/compare/v1.3.2...v1.3.3) (2018-02-15) + + +### Bug Fixes + +* updated dev-cli ([1d890f6](https://github.com/oclif/oclif/commit/1d890f6ed224134ef7bf549d0a6ab34aaa49ae78)) + + + +## [1.3.2](https://github.com/oclif/oclif/compare/v1.3.1...v1.3.2) (2018-02-15) + + +### Bug Fixes + +* add emojis to readme ([fb7765c](https://github.com/oclif/oclif/commit/fb7765cf6e6aee9be110eab94e596cdc85c323dc)) + + + +## [1.3.1](https://github.com/oclif/oclif/compare/v1.3.0...v1.3.1) (2018-02-15) + + +### Bug Fixes + +* updated dev-cli ([dc18085](https://github.com/oclif/oclif/commit/dc18085b5c99a9df0d92f96c8df85aada98fb951)) +* use shield style for circle ([6bb89b6](https://github.com/oclif/oclif/commit/6bb89b6e1ce6f17c1a57c6671c1df4178b595da8)) +* use shield style for circle ([d0533a6](https://github.com/oclif/oclif/commit/d0533a66a4522d448676b134090ef09cecc2c45c)) + + + +# [1.3.0](https://github.com/oclif/oclif/compare/v1.2.14...v1.3.0) (2018-02-15) + + +### Features + +* add LICENSE if salesforce repo + mit ([17f4b2a](https://github.com/oclif/oclif/commit/17f4b2a47249c8568bf4e0e65961b01d5461cb8e)) +* add LICENSE if salesforce repo + mit ([94847e5](https://github.com/oclif/oclif/commit/94847e5ace0e9e0c6f8e86aa9ceb92c421952684)) -* updated deps ([447acaa](https://github.com/oclif/oclif/commit/447acaa)) - -## [1.7.30](https://github.com/oclif/oclif/compare/v1.7.29...v1.7.30) (2018-04-10) +### Reverts +* Revert "chore: add nyc" ([4150a7b](https://github.com/oclif/oclif/commit/4150a7bc05707a58942f51a8c94bf514ee5bbe6d)) -### Bug Fixes -* break up code coverage into its own step ([0f2ecae](https://github.com/oclif/oclif/commit/0f2ecae)) - -## [1.7.29](https://github.com/oclif/oclif/compare/v1.7.28...v1.7.29) (2018-04-10) +## [1.2.14](https://github.com/oclif/oclif/compare/v1.2.12...v1.2.14) (2018-02-15) ### Bug Fixes -* remove junit reporter from circle ([1927369](https://github.com/oclif/oclif/commit/1927369)) +* fixed node version check ([c4de729](https://github.com/oclif/oclif/commit/c4de729b1570ef0f3e544693c94ca008ff4557f8)) +* updated dev-cli ([59e3e32](https://github.com/oclif/oclif/commit/59e3e32f39f251414f10224cfe49c5f2bee44090)) - -## [1.7.28](https://github.com/oclif/oclif/compare/v1.7.27...v1.7.28) (2018-04-09) -### Bug Fixes +## [1.2.12](https://github.com/oclif/oclif/compare/v1.2.11...v1.2.12) (2018-02-15) -* add another command to multi examples ([3fc97ec](https://github.com/oclif/oclif/commit/3fc97ec)) -* command example generation ([41c00ca](https://github.com/oclif/oclif/commit/41c00ca)) - -## [1.7.27](https://github.com/oclif/oclif/compare/v1.7.26...v1.7.27) (2018-04-09) +### Bug Fixes +* fixed repo link ([dddd420](https://github.com/oclif/oclif/commit/dddd42000930bfb37a2d573042863cdbe96e1613)) -### Bug Fixes -* generate readme before packing ([fe9be07](https://github.com/oclif/oclif/commit/fe9be07)) - -## [1.7.26](https://github.com/oclif/oclif/compare/v1.7.25...v1.7.26) (2018-04-09) +## [1.2.11](https://github.com/oclif/oclif/compare/v1.2.10...v1.2.11) (2018-02-15) ### Bug Fixes -* add descriptions for circle tasks ([494d6ac](https://github.com/oclif/oclif/commit/494d6ac)) +* readme improvements ([f1829b7](https://github.com/oclif/oclif/commit/f1829b73960bacd99efe1668a9e93bf23e578e62)) - -## [1.7.25](https://github.com/oclif/oclif/compare/v1.7.24...v1.7.25) (2018-04-09) -### Bug Fixes +## [1.2.10](https://github.com/oclif/oclif/compare/v1.2.9...v1.2.10) (2018-02-15) -* add descriptions for circle tasks ([de4f924](https://github.com/oclif/oclif/commit/de4f924)) - -## [1.7.24](https://github.com/oclif/oclif/compare/v1.7.23...v1.7.24) (2018-04-08) +### Bug Fixes +* updated dev-cli ([bbfac28](https://github.com/oclif/oclif/commit/bbfac28675d71d64cfd8ab037856b7963555830c)) -### Bug Fixes -* lock down deps ([ac95a07](https://github.com/oclif/oclif/commit/ac95a07)) - -## [1.7.23](https://github.com/oclif/oclif/compare/v1.7.22...v1.7.23) (2018-04-08) +## [1.2.9](https://github.com/oclif/oclif/compare/v1.2.8...v1.2.9) (2018-02-15) ### Bug Fixes -* command path on windows ([#96](https://github.com/oclif/oclif/issues/96)) ([612f401](https://github.com/oclif/oclif/commit/612f401)) -* ignore any node_modules directories ([ceb13f2](https://github.com/oclif/oclif/commit/ceb13f2)) -* ignore package-lock.json ([8cb8582](https://github.com/oclif/oclif/commit/8cb8582)) -* skip eslint files when using typescript ([7dec822](https://github.com/oclif/oclif/commit/7dec822)) +* improve docs ([cc5fd9b](https://github.com/oclif/oclif/commit/cc5fd9bebd22c10810622feefe21b7c8e3703225)) - -## [1.7.22](https://github.com/oclif/oclif/compare/v1.7.21...v1.7.22) (2018-04-08) -### Bug Fixes +## [1.2.8](https://github.com/oclif/oclif/compare/v1.2.7...v1.2.8) (2018-02-15) -* fixed lint issues ([3048e06](https://github.com/oclif/oclif/commit/3048e06)) -* remove unneeded script ([016849f](https://github.com/oclif/oclif/commit/016849f)) - -## [1.7.21](https://github.com/oclif/oclif/compare/v1.7.20...v1.7.21) (2018-04-08) +### Bug Fixes +* use github for snyk ([842fa27](https://github.com/oclif/oclif/commit/842fa2723d9026a4d9dd6d52194a989c0b30ae7a)) -### Bug Fixes -* simplify npm script usage ([8e17b32](https://github.com/oclif/oclif/commit/8e17b32)) -* simplify npm script usage ([417cd49](https://github.com/oclif/oclif/commit/417cd49)) -* use npm pack in test ([7474932](https://github.com/oclif/oclif/commit/7474932)) -* use npm pack in test ([1a4de12](https://github.com/oclif/oclif/commit/1a4de12)) - -## [1.7.20](https://github.com/oclif/oclif/compare/v1.7.19...v1.7.20) (2018-04-08) +## [1.2.7](https://github.com/oclif/oclif/compare/v1.2.6...v1.2.7) (2018-02-15) ### Bug Fixes -* define help flag on initial command ([e1b68a3](https://github.com/oclif/oclif/commit/e1b68a3)) +* doc improvements ([9ebd831](https://github.com/oclif/oclif/commit/9ebd831e24626f9a886614b413c75a8f4ad55c28)) +* updated dev-cli ([32ca869](https://github.com/oclif/oclif/commit/32ca869f48afcda131db592f9dc6a6a5cd30e193)) - -## [1.7.19](https://github.com/oclif/oclif/compare/v1.7.18...v1.7.19) (2018-04-07) -### Bug Fixes +## [1.2.6](https://github.com/oclif/oclif/compare/v1.2.5...v1.2.6) (2018-02-15) -* gitignore /dist ([d0bb4f0](https://github.com/oclif/oclif/commit/d0bb4f0)) - -## [1.7.18](https://github.com/oclif/oclif/compare/v1.7.17...v1.7.18) (2018-04-07) +### Bug Fixes +* updated deps ([6bf6fcd](https://github.com/oclif/oclif/commit/6bf6fcd9ac7e7271c225fef36b3ab91baac14a82)) -### Bug Fixes -* use posttest instead of lint script ([48516e1](https://github.com/oclif/oclif/commit/48516e1)) - -## [1.7.17](https://github.com/oclif/oclif/compare/v1.7.16...v1.7.17) (2018-04-06) +## [1.2.5](https://github.com/oclif/oclif/compare/v1.2.4...v1.2.5) (2018-02-14) ### Bug Fixes -* set repository to input ([276ac06](https://github.com/oclif/oclif/commit/276ac06)) +* run version command ([7997c86](https://github.com/oclif/oclif/commit/7997c864efc2e04f62a95838f73e9967a8d8e0a5)) - -## [1.7.16](https://github.com/oclif/oclif/compare/v1.7.15...v1.7.16) (2018-04-06) -### Bug Fixes +## [1.2.4](https://github.com/oclif/oclif/compare/v1.2.3...v1.2.4) (2018-02-14) -* remove declarations from test tslint ([3d8181b](https://github.com/oclif/oclif/commit/3d8181b)) - -## [1.7.15](https://github.com/oclif/oclif/compare/v1.7.14...v1.7.15) (2018-04-06) +### Bug Fixes +* docs ([6f858e4](https://github.com/oclif/oclif/commit/6f858e466b938c9c09865e35c9cd579ba2a030cb)) -### Bug Fixes -* use package-lock.json or yarn.lock from root only ([9cb57ac](https://github.com/oclif/oclif/commit/9cb57ac)) - -## [1.7.14](https://github.com/oclif/oclif/compare/v1.7.13...v1.7.14) (2018-04-05) +## [1.2.3](https://github.com/oclif/oclif/compare/v1.2.2...v1.2.3) (2018-02-14) ### Bug Fixes -* ignore package-lock.json or yarn.lock ([e589f0a](https://github.com/oclif/oclif/commit/e589f0a)) +* add docs ([e6d3dab](https://github.com/oclif/oclif/commit/e6d3dab41a4abb18269ffe30fad2e43b42f3b18d)) +* add docs ([f314205](https://github.com/oclif/oclif/commit/f3142056c0c00ae1b38d21968edc17202b3bc582)) +* updated readme links ([1171d36](https://github.com/oclif/oclif/commit/1171d36e5984234c2e964857ebd4f168792726d5)) - -## [1.7.13](https://github.com/oclif/oclif/compare/v1.7.12...v1.7.13) (2018-04-04) -### Bug Fixes +## [1.2.2](https://github.com/oclif/oclif/compare/v1.2.1...v1.2.2) (2018-02-14) -* fixed commands directory in example ([2d8b964](https://github.com/oclif/oclif/commit/2d8b964)) - -## [1.7.12](https://github.com/oclif/oclif/compare/v1.7.11...v1.7.12) (2018-04-04) +### Bug Fixes +* doc improvements ([c2b8476](https://github.com/oclif/oclif/commit/c2b8476dd87eade0330fd87576705833462db597)) -### Bug Fixes -* only show examples if generating hello command ([147a317](https://github.com/oclif/oclif/commit/147a317)) -* show ts path in example command instead of js path ([12869c4](https://github.com/oclif/oclif/commit/12869c4)) - -## [1.7.11](https://github.com/oclif/oclif/compare/v1.7.10...v1.7.11) (2018-04-02) +## [1.2.1](https://github.com/oclif/oclif/compare/v1.2.0...v1.2.1) (2018-02-14) ### Bug Fixes -* **generators/command:** assert cwd is a project ([#94](https://github.com/oclif/oclif/issues/94)) ([192f268](https://github.com/oclif/oclif/commit/192f268)) +* doc improvements ([740c0d7](https://github.com/oclif/oclif/commit/740c0d75f64ef09e9e88158bf42e31d3cea49c5d)) + - -## [1.7.10](https://github.com/oclif/oclif/compare/v1.7.9...v1.7.10) (2018-03-28) + +# [1.2.0](https://github.com/oclif/oclif/compare/v1.1.2...v1.2.0) (2018-02-14) ### Bug Fixes -* remove commitlint from this project ([#87](https://github.com/oclif/oclif/issues/87)) ([beb4b4e](https://github.com/oclif/oclif/commit/beb4b4e)) +* set bin for plugins ([c8d0f11](https://github.com/oclif/oclif/commit/c8d0f11cb67b4abf4c1bb1744b58bb45317e538c)) - -## [1.7.9](https://github.com/oclif/oclif/compare/v1.7.8...v1.7.9) (2018-03-25) +### Features -### Bug Fixes +* added readme toc ([2cdba83](https://github.com/oclif/oclif/commit/2cdba835bbee7039ccc7f2c225827878871caee1)) -* move release script into semantic-release ([020e633](https://github.com/oclif/oclif/commit/020e633)) - -## [1.7.8](https://github.com/oclif/oclif/compare/v1.7.7...v1.7.8) (2018-03-25) + +## [1.1.2](https://github.com/oclif/oclif/compare/v1.1.1...v1.1.2) (2018-02-14) ### Bug Fixes -* automate create-oclif publishing ([bffcc90](https://github.com/oclif/oclif/commit/bffcc90)) +* automatically replace readme on generation ([65b831c](https://github.com/oclif/oclif/commit/65b831cdf4e3c85748f7a2b71331d37961087be9)) + - -## [1.7.7](https://github.com/oclif/oclif/compare/v1.7.6...v1.7.7) (2018-03-25) + +## [1.1.1](https://github.com/oclif/oclif/compare/v1.1.0...v1.1.1) (2018-02-14) ### Bug Fixes -* updated command ([bd7921f](https://github.com/oclif/oclif/commit/bd7921f)) +* fixed lint issue ([218101c](https://github.com/oclif/oclif/commit/218101cb0c3124a5676ea22b05cf4b4defeb0208)) +* move nps-utils to deps ([52c0012](https://github.com/oclif/oclif/commit/52c0012f302bbedb0b29de84914feec1e82c325a)) +* remove unused title ([234d83a](https://github.com/oclif/oclif/commit/234d83a2226179e7891011e2eb769c71881a46ad)) - -## [1.7.6](https://github.com/oclif/oclif/compare/v1.7.5...v1.7.6) (2018-03-24) -### Bug Fixes +# [1.1.0](https://github.com/oclif/oclif/compare/v1.0.6...v1.1.0) (2018-02-13) -* updated config and warn-if-update-available ([db21fca](https://github.com/oclif/oclif/commit/db21fca)) - -## [1.7.5](https://github.com/oclif/oclif/compare/v1.7.4...v1.7.5) (2018-03-24) +### Features +* add readme content ([12af0a7](https://github.com/oclif/oclif/commit/12af0a7fe82da6c5b7e38b3e9505e218e51f565d)) -### Bug Fixes -* add warning if CLI is out of date ([fa5ed18](https://github.com/oclif/oclif/commit/fa5ed18)) - -## [1.7.4](https://github.com/oclif/oclif/compare/v1.7.3...v1.7.4) (2018-03-24) +## [1.0.6](https://github.com/oclif/oclif/compare/v1.0.5...v1.0.6) (2018-02-13) ### Bug Fixes -* updated plugin-help ([19df489](https://github.com/oclif/oclif/commit/19df489)) +* make linter happy ([c344697](https://github.com/oclif/oclif/commit/c3446976042b13715d7e3c4c2b07804f6fea81c1)) +* updated deps ([2b8fa8a](https://github.com/oclif/oclif/commit/2b8fa8a19b7ab3f94a0b6164ea3e3ff5bfd3b10b)) - -## [1.7.3](https://github.com/oclif/oclif/compare/v1.7.2...v1.7.3) (2018-03-24) -### Bug Fixes +## [1.0.5](https://github.com/oclif/oclif/compare/v1.0.4...v1.0.5) (2018-02-13) -* add hook to circle ([a4da315](https://github.com/oclif/oclif/commit/a4da315)) -* fixed hook circle config test ([3f4ab92](https://github.com/oclif/oclif/commit/3f4ab92)) -* updated plugin-help ([cb53bb3](https://github.com/oclif/oclif/commit/cb53bb3)) - -## [1.7.2](https://github.com/oclif/oclif/compare/v1.7.1...v1.7.2) (2018-03-24) +### Bug Fixes +* use v1 of nyc-config ([17f19f2](https://github.com/oclif/oclif/commit/17f19f2e9b37dfd62f51f15cbdf542158ace16d8)) -### Bug Fixes -* add yarn to examples ([b4cd8b3](https://github.com/oclif/oclif/commit/b4cd8b3)) -* fixed semantic-release config ([a4f69f1](https://github.com/oclif/oclif/commit/a4f69f1)) -* update semantic-release ([9f45593](https://github.com/oclif/oclif/commit/9f45593)) -* update semantic-release ([d2e3159](https://github.com/oclif/oclif/commit/d2e3159)) - -## [1.7.1](https://github.com/oclif/oclif/compare/7b683610ea2e5f16d622a0b7ebb6b9d2ee484b07...v1.7.1) (2018-03-24) +## [1.0.4](https://github.com/oclif/oclif/compare/v1.0.2...v1.0.4) (2018-02-13) ### Bug Fixes -* remove commitlint ([#83](https://github.com/oclif/oclif/issues/83)) ([b5c6327](https://github.com/oclif/oclif/commit/b5c6327)) +* improve message ([7e918c9](https://github.com/oclif/oclif/commit/7e918c9d6a503d0ff1a8a262a545d0a2f3588478)) +* use v1 of nyc-config ([5c832ff](https://github.com/oclif/oclif/commit/5c832ff35260be26461fc15bd40a8b0fe82c9f9e)) - -# [1.7.0](https://github.com/oclif/oclif/compare/c45448e97858b789a91f765c631c91c7f8263f9f...v1.7.0) (2018-03-24) -### Features +## [1.0.2](https://github.com/oclif/oclif/compare/v1.0.1...v1.0.2) (2018-02-13) -* removes snyk readme template badge ([#80](https://github.com/oclif/oclif/issues/80)) ([7b68361](https://github.com/oclif/oclif/commit/7b68361)), closes [oclif/oclif#69](https://github.com/oclif/oclif/issues/69) - -# [1.6.0](https://github.com/oclif/oclif/compare/e117a8559b1ad84c8110df71906ca4c975ab529f...v1.6.0) (2018-03-24) +### Bug Fixes +* updated tslint ([8b465d4](https://github.com/oclif/oclif/commit/8b465d48a86ec9277a41cee86fd846c428433925)) -### Features -* removes greenkeeper readme template badge ([#81](https://github.com/oclif/oclif/issues/81)) ([c45448e](https://github.com/oclif/oclif/commit/c45448e)), closes [oclif/oclif#70](https://github.com/oclif/oclif/issues/70) - -## [1.5.8](https://github.com/oclif/oclif/compare/214be061c7f17287a12474e0dff4d39cc63e8109...v1.5.8) (2018-03-24) +## [1.0.1](https://github.com/oclif/oclif/compare/v1.0.0...v1.0.1) (2018-02-13) ### Bug Fixes -* fix hooks to work with ts-node ([e117a85](https://github.com/oclif/oclif/commit/e117a85)), closes [#78](https://github.com/oclif/oclif/issues/78) +* oclif rename ([d4c5efe](https://github.com/oclif/oclif/commit/d4c5efe21fdcaace6560ec3c6afb237c8b8d80e5)) - -## [1.5.7](https://github.com/oclif/oclif/compare/e6446ca65238f4ab21f3e30f0391bf4e49cc6f95...v1.5.7) (2018-03-24) -### Bug Fixes +# [1.0.0](https://github.com/oclif/oclif/compare/v0.33.23...v1.0.0) (2018-02-13) -* fixed yarn detection ([214be06](https://github.com/oclif/oclif/commit/214be06)) - -## [1.5.6](https://github.com/oclif/oclif/compare/19579350dadf5007c5155cd9c41834345acb17f3...v1.5.6) (2018-03-24) +### Bug Fixes +* fixed bin name ([5995e7f](https://github.com/oclif/oclif/commit/5995e7f182a7cfd7aac485ff0e6b92dc6613ed92)) +* rename to oclif ([cb1ab35](https://github.com/oclif/oclif/commit/cb1ab3507bc44d6039a4b9ce226a8ba7e5e4f247)) +* updated config ([40d2500](https://github.com/oclif/oclif/commit/40d2500c501fc45ed18a760cb8295e96cb34fde8)) -### Bug Fixes -* updated command/config ([e6446ca](https://github.com/oclif/oclif/commit/e6446ca)) - -## [1.5.5](https://github.com/oclif/oclif/compare/c82d5f484a425261cbe28692aabc3c30b5827550...v1.5.5) (2018-03-24) +## [0.33.23](https://github.com/oclif/oclif/compare/v0.33.22...v0.33.23) (2018-02-07) ### Bug Fixes -* fixed npm devDependencies ([1957935](https://github.com/oclif/oclif/commit/1957935)) -* move globby to devDependencies ([9f07b24](https://github.com/oclif/oclif/commit/9f07b24)) +* better repo handling ([4b1add8](https://github.com/oclif/oclif/commit/4b1add8b8a3798b794d0b64c60b4d72ab0595ce4)) - -## [1.5.4](https://github.com/oclif/oclif/compare/367e189144af37df10373e4a20e9d22106e97e29...v1.5.4) (2018-03-24) -### Bug Fixes +## [0.33.22](https://github.com/oclif/oclif/compare/v0.33.21...v0.33.22) (2018-02-07) -* [@oclif](https://github.com/oclif)/errors no longer directly required ([c82d5f4](https://github.com/oclif/oclif/commit/c82d5f4)) - -## [1.5.3](https://github.com/oclif/oclif/compare/90ffc41943efe6c0de36d8793097581737c7a5b5...v1.5.3) (2018-03-24) +### Bug Fixes +* updated deps ([05d0bf0](https://github.com/oclif/oclif/commit/05d0bf0460b2225585d0f4dd14c1d4186b76f48a)) -### Bug Fixes -* updated deps ([367e189](https://github.com/oclif/oclif/commit/367e189)) - -## [1.5.2](https://github.com/oclif/oclif/compare/d24456ba28f0ea2d4e392dda30a4543a461fc6c5...v1.5.2) (2018-03-23) +## [0.33.21](https://github.com/oclif/oclif/compare/v0.33.20...v0.33.21) (2018-02-07) ### Bug Fixes -* updated dev-cli ([90ffc41](https://github.com/oclif/oclif/commit/90ffc41)) +* added docs ([b5d798e](https://github.com/oclif/oclif/commit/b5d798e1b405aeb6edaa166919fa3a19357f00a9)) - -## [1.5.1](https://github.com/oclif/oclif/compare/4106708e3fa2332fcada0361c76a1071f61315a8...v1.5.1) (2018-03-23) -### Bug Fixes +## [0.33.20](https://github.com/oclif/oclif/compare/v0.33.19...v0.33.20) (2018-02-07) -* add usage/command headers explicitly ([d24456b](https://github.com/oclif/oclif/commit/d24456b)) - -# [1.5.0](https://github.com/oclif/oclif/compare/f8337999b5a22cbe9bfa90a7d7a026a1a15a333b...v1.5.0) (2018-03-23) +### Bug Fixes +* added clean step ([da22f7f](https://github.com/oclif/oclif/commit/da22f7faec395b0776d53ddf65941ed0c5829457)) -### Features -* add hook generator ([#77](https://github.com/oclif/oclif/issues/77)) ([4106708](https://github.com/oclif/oclif/commit/4106708)) - -## [1.4.12](https://github.com/oclif/oclif/compare/43ebebaec031697f7e1595e79771d15c76e11cd6...v1.4.12) (2018-03-23) +## [0.33.19](https://github.com/oclif/oclif/compare/v0.33.18...v0.33.19) (2018-02-07) ### Bug Fixes -* document yarn flag ([f833799](https://github.com/oclif/oclif/commit/f833799)) +* add docs and readme to semantic-release ([75b4a74](https://github.com/oclif/oclif/commit/75b4a740540646d205bc1e4694210f8d3534b5f3)) +* bump dev-cli ([6d4764f](https://github.com/oclif/oclif/commit/6d4764f1a1f96dc3fbe842ed942dd9964e1e451a)) - -## [1.4.11](https://github.com/oclif/oclif/compare/01370d252da66e25b80a2947ec38e4db21101a61...v1.4.11) (2018-03-23) -### Bug Fixes +## [0.33.18](https://github.com/oclif/oclif/compare/v0.33.17...v0.33.18) (2018-02-07) -* move docs to oclif.io ([43ebeba](https://github.com/oclif/oclif/commit/43ebeba)) -* move docs to oclif.io ([c067401](https://github.com/oclif/oclif/commit/c067401)) - -## [1.4.10](https://github.com/oclif/oclif/compare/71576609c182f8fbffbffdf408671c5cb9c4a0b6...v1.4.10) (2018-03-22) +### Bug Fixes +* use git add when not using semantic release ([b66c1e9](https://github.com/oclif/oclif/commit/b66c1e9187e0b4fe6e137fbe52df87c73408ebcb)) -### Bug Fixes -* use npm for scripts if not yarn ([01370d2](https://github.com/oclif/oclif/commit/01370d2)) - -## [1.4.9](https://github.com/oclif/oclif/compare/5ef966fc1f4165983c9ff6ca8250e7e5d61c79bf...v1.4.9) (2018-03-22) +## [0.33.17](https://github.com/oclif/oclif/compare/v0.33.16...v0.33.17) (2018-02-07) ### Bug Fixes -* make yarn optional ([#76](https://github.com/oclif/oclif/issues/76)) ([7157660](https://github.com/oclif/oclif/commit/7157660)) +* bump dev-cli ([39e5b5f](https://github.com/oclif/oclif/commit/39e5b5f234e033780a5942e355898a53c51a21f8)) - -## [1.4.7](https://github.com/oclif/oclif/compare/241741aedd890b37be615972da35f02596cde082...v1.4.7) (2018-03-22) -### Bug Fixes +## [0.33.16](https://github.com/oclif/oclif/compare/v0.33.15...v0.33.16) (2018-02-07) -* add path argument description ([c37e724](https://github.com/oclif/oclif/commit/c37e724)) - -## [1.4.6](https://github.com/oclif/oclif/compare/032b2319d756e0817f96c6311cbaa3a027f6b0e2...v1.4.6) (2018-03-22) +### Bug Fixes +* updated config ([76c5225](https://github.com/oclif/oclif/commit/76c5225195f83f661decc00dba24f45ecf80638c)) -### Bug Fixes -* build manifest ([241741a](https://github.com/oclif/oclif/commit/241741a)) - -## [1.4.5](https://github.com/oclif/oclif/compare/4d774b17451c873cb736c8d458b884a4d2916474...v1.4.5) (2018-03-22) +## [0.33.15](https://github.com/oclif/oclif/compare/v0.33.14...v0.33.15) (2018-02-07) ### Bug Fixes -* set OCLIF_NEXT_VERSION ([032b231](https://github.com/oclif/oclif/commit/032b231)) +* updated dev-cli ([587e09a](https://github.com/oclif/oclif/commit/587e09a3c1956d4abd0f1c375cd95a8e7ce542b8)) - -## [1.4.4](https://github.com/oclif/oclif/compare/f9a733a0c78d4f9e2a8a22d3fc7320cf2d978398...v1.4.4) (2018-03-22) -### Bug Fixes +## [0.33.14](https://github.com/oclif/oclif/compare/v0.33.13...v0.33.14) (2018-02-07) -* set OCLIF_NEXT_VERSION ([4d774b1](https://github.com/oclif/oclif/commit/4d774b1)) - -## [1.4.3](https://github.com/oclif/oclif/compare/c9307e7e986a44e5882d29bee5e0ffaca266834b...v1.4.3) (2018-03-22) +### Bug Fixes +* add manifest to gitignore ([692ca32](https://github.com/oclif/oclif/commit/692ca3219069c7a78a9d3c35731710d956647fec)) +* add READMEs ([f78cf18](https://github.com/oclif/oclif/commit/f78cf18904abbddb98172a79f231cf8368648da5)) +* bump cache ([9773ed7](https://github.com/oclif/oclif/commit/9773ed77910d557b0f37bac7650beeea8c3bf9a3)) -### Bug Fixes -* updated dev-cli ([f9a733a](https://github.com/oclif/oclif/commit/f9a733a)) - -## [1.4.1](https://github.com/oclif/oclif/compare/e3a7943855ffbe96de697541025a90cf59194076...v1.4.1) (2018-03-21) +## [0.33.13](https://github.com/oclif/oclif/compare/v0.33.12...v0.33.13) (2018-02-06) ### Bug Fixes -* remove noUnusedLocals and noUnusedParameters as these are checked with tslint ([06e2c46](https://github.com/oclif/oclif/commit/06e2c46)) +* add config to deps ([354683d](https://github.com/oclif/oclif/commit/354683d115210be507f06bfa3e6ed19c04733700)) +* add errors to deps ([fd0e9ed](https://github.com/oclif/oclif/commit/fd0e9ed9dc1c2e96ef104d042fadffedc6743389)) - -# [1.4.0](https://github.com/oclif/oclif/compare/009490b5de98bb9e71874abee253eb1be85f38d1...v1.4.0) (2018-03-21) -### Features +## [0.33.12](https://github.com/oclif/oclif/compare/v0.33.11...v0.33.12) (2018-02-06) -* add tslint component option ([#63](https://github.com/oclif/oclif/issues/63)) ([e3a7943](https://github.com/oclif/oclif/commit/e3a7943)) - -## [1.3.14](https://github.com/oclif/oclif/compare/64971883b1df554d06a13a8242694f34c517b1e6...v1.3.14) (2018-03-21) +### Bug Fixes +* generator improvements ([50c303f](https://github.com/oclif/oclif/commit/50c303f3dd8f173c3f470cf26f964231f8d1f626)) -### Bug Fixes -* add -h and -v flags for single ([#62](https://github.com/oclif/oclif/issues/62)) ([009490b](https://github.com/oclif/oclif/commit/009490b)) - -## [1.3.13](https://github.com/oclif/oclif/compare/d91482b5a701198d554bde2495be924ece3486cc...v1.3.13) (2018-03-21) +## [0.33.11](https://github.com/oclif/oclif/compare/v0.33.10...v0.33.11) (2018-02-06) ### Bug Fixes -* use version long flag for circle test ([#61](https://github.com/oclif/oclif/issues/61)) ([6497188](https://github.com/oclif/oclif/commit/6497188)) +* use @anycli/errors ([90afa69](https://github.com/oclif/oclif/commit/90afa69f0516a721736925c11997cb6b6cfb5051)) - -## [1.3.12](https://github.com/oclif/oclif/compare/edacb134324c59c5a778ff3fd870804800662eeb...v1.3.12) (2018-03-21) -### Bug Fixes +## [0.33.10](https://github.com/oclif/oclif/compare/v0.33.9...v0.33.10) (2018-02-06) -* readme template ([#60](https://github.com/oclif/oclif/issues/60)) ([d91482b](https://github.com/oclif/oclif/commit/d91482b)) - -## [1.3.11](https://github.com/oclif/oclif/compare/c22f423a73ba134afb1087b125413de6fb5a223e...v1.3.11) (2018-03-20) +### Bug Fixes +* use @anycli/errors ([348d7e8](https://github.com/oclif/oclif/commit/348d7e8ac5b8cfc3c28d2d67df6e8b1312780fd5)) +* use @anycli/errors ([82530fd](https://github.com/oclif/oclif/commit/82530fd0c5115eed21064fb32447811a7134f1b1)) -### Bug Fixes -* bump dependencies ([edacb13](https://github.com/oclif/oclif/commit/edacb13)) - -## [1.3.10](https://github.com/oclif/oclif/compare/bbea1b6c7c4d0c3a90a0da7ca37766448561730a...v1.3.10) (2018-03-15) +## [0.33.9](https://github.com/oclif/oclif/compare/v0.33.8...v0.33.9) (2018-02-05) ### Bug Fixes -* return a promise from yeoman callback style so it actually awaits ([#43](https://github.com/oclif/oclif/issues/43)) ([c22f423](https://github.com/oclif/oclif/commit/c22f423)) +* add catch handler ([b8848a4](https://github.com/oclif/oclif/commit/b8848a46e2df42be7883cc424cbfd340998c8e16)) - -## [1.3.9](https://github.com/oclif/oclif/compare/a45f4058f9492d8c7cb7cf4a6906a709b34165e9...v1.3.9) (2018-03-08) -### Bug Fixes +## [0.33.8](https://github.com/oclif/oclif/compare/v0.33.7...v0.33.8) (2018-02-05) -* add component descriptions and default mocha and ts ([#42](https://github.com/oclif/oclif/issues/42)) ([bbea1b6](https://github.com/oclif/oclif/commit/bbea1b6)) -* add component descriptions and option to skip ([25cf71e](https://github.com/oclif/oclif/commit/25cf71e)) - -## [1.3.8](https://github.com/oclif/oclif/compare/0d6ab82e4db4f99e28273af25425fc9f3919334d...v1.3.8) (2018-02-28) +### Bug Fixes +* move help to devPlugins for pluginsg ([157f1d6](https://github.com/oclif/oclif/commit/157f1d6807d1771dd7de7f5e2107a01e0d5fb6c3)) -### Bug Fixes -* fixed ts-node compatibility ([a45f405](https://github.com/oclif/oclif/commit/a45f405)) - -## [1.3.7](https://github.com/oclif/oclif/compare/c9741f7ac908f44d963dadda9c19aa1a50fd0ad6...v1.3.7) (2018-02-17) +## [0.33.7](https://github.com/oclif/oclif/compare/v0.33.6...v0.33.7) (2018-02-05) ### Bug Fixes -* updated help ([0d6ab82](https://github.com/oclif/oclif/commit/0d6ab82)) +* globby not needed for single ([8d34141](https://github.com/oclif/oclif/commit/8d34141c7ca7b1263eb04528305c0941f3f787de)) - -## [1.3.6](https://github.com/oclif/oclif/compare/3ffd29af6122becb6f9006df364c5092ef9fad08...v1.3.6) (2018-02-17) -### Bug Fixes +## [0.33.6](https://github.com/oclif/oclif/compare/v0.33.5...v0.33.6) (2018-02-05) -* show full path to file ([c9741f7](https://github.com/oclif/oclif/commit/c9741f7)) - -## [1.3.5](https://github.com/oclif/oclif/compare/8359976eda2665452ecb138291355444ab699809...v1.3.5) (2018-02-17) +### Bug Fixes +* add globby ([bf2bfab](https://github.com/oclif/oclif/commit/bf2bfabfd95af2de5250acd4b2edfa9c559d7a5b)) +* updates from config/command ([b2d0733](https://github.com/oclif/oclif/commit/b2d0733239389ba120a5d88b149dfdb68afe9fb8)) -### Bug Fixes -* updated command ([3ffd29a](https://github.com/oclif/oclif/commit/3ffd29a)) - -## [1.3.4](https://github.com/oclif/oclif/compare/1d890f6ed224134ef7bf549d0a6ab34aaa49ae78...v1.3.4) (2018-02-15) +## [0.33.5](https://github.com/oclif/oclif/compare/v0.33.4...v0.33.5) (2018-02-05) ### Bug Fixes -* updated dev-cli ([8359976](https://github.com/oclif/oclif/commit/8359976)) +* use stylist tslint formatter ([9542a1f](https://github.com/oclif/oclif/commit/9542a1f6be95f8ea2abbe6d520cc21498c2372ee)) - -## [1.3.3](https://github.com/oclif/oclif/compare/fb7765cf6e6aee9be110eab94e596cdc85c323dc...v1.3.3) (2018-02-15) -### Bug Fixes +## [0.33.4](https://github.com/oclif/oclif/compare/v0.33.3...v0.33.4) (2018-02-04) -* updated dev-cli ([1d890f6](https://github.com/oclif/oclif/commit/1d890f6)) - -## [1.3.2](https://github.com/oclif/oclif/compare/6bb89b6e1ce6f17c1a57c6671c1df4178b595da8...v1.3.2) (2018-02-15) +### Bug Fixes +* no longer need engine ([bd41ae3](https://github.com/oclif/oclif/commit/bd41ae3b8f1f22a6c8e69a681472a8556a612e0a)) -### Bug Fixes -* add emojis to readme ([fb7765c](https://github.com/oclif/oclif/commit/fb7765c)) - -## [1.3.1](https://github.com/oclif/oclif/compare/17f4b2a47249c8568bf4e0e65961b01d5461cb8e...v1.3.1) (2018-02-15) +## [0.33.3](https://github.com/oclif/oclif/compare/v0.33.2...v0.33.3) (2018-02-03) ### Bug Fixes -* updated dev-cli ([dc18085](https://github.com/oclif/oclif/commit/dc18085)) -* use shield style for circle ([6bb89b6](https://github.com/oclif/oclif/commit/6bb89b6)) -* use shield style for circle ([d0533a6](https://github.com/oclif/oclif/commit/d0533a6)) +* use simpler command/config setup ([b5b7377](https://github.com/oclif/oclif/commit/b5b737797a9b7fbe9e1b762818e10e4f3b1e5380)) - -# [1.3.0](https://github.com/oclif/oclif/compare/59e3e32f39f251414f10224cfe49c5f2bee44090...v1.3.0) (2018-02-15) -### Features +## [0.33.2](https://github.com/oclif/oclif/compare/v0.33.1...v0.33.2) (2018-02-02) -* add LICENSE if salesforce repo + mit ([17f4b2a](https://github.com/oclif/oclif/commit/17f4b2a)) -* add LICENSE if salesforce repo + mit ([94847e5](https://github.com/oclif/oclif/commit/94847e5)) - -## [1.2.14](https://github.com/oclif/oclif/compare/c4de729b1570ef0f3e544693c94ca008ff4557f8...v1.2.14) (2018-02-15) +### Bug Fixes +* disable yarn check for now ([5637b46](https://github.com/oclif/oclif/commit/5637b46450e185e9591be63475d2ca7fb819a3af)) +* use -o for manifest building ([2171042](https://github.com/oclif/oclif/commit/2171042b96df00d147827d4d3506697073007862)) -### Bug Fixes -* updated dev-cli ([59e3e32](https://github.com/oclif/oclif/commit/59e3e32)) - -## [1.2.12](https://github.com/oclif/oclif/compare/f1829b73960bacd99efe1668a9e93bf23e578e62...v1.2.12) (2018-02-15) +## [0.33.1](https://github.com/oclif/oclif/compare/v0.33.0...v0.33.1) (2018-02-02) ### Bug Fixes -* fixed repo link ([dddd420](https://github.com/oclif/oclif/commit/dddd420)) +* fixed manifest location ([14802aa](https://github.com/oclif/oclif/commit/14802aa23e3b81793163c602caff56cd277a3db0)) +* fixed manifest location ([36f79a8](https://github.com/oclif/oclif/commit/36f79a8404c8175d8de6450275f97147c2b272f9)) - -## [1.2.11](https://github.com/oclif/cli/compare/bbfac28675d71d64cfd8ab037856b7963555830c...v1.2.11) (2018-02-15) -### Bug Fixes +# [0.33.0](https://github.com/oclif/oclif/compare/v0.32.16...v0.33.0) (2018-02-02) -* readme improvements ([f1829b7](https://github.com/oclif/cli/commit/f1829b7)) - -## [1.2.10](https://github.com/oclif/cli/compare/cc5fd9bebd22c10810622feefe21b7c8e3703225...v1.2.10) (2018-02-15) +### Features +* add manifest to package ([2fc517c](https://github.com/oclif/oclif/commit/2fc517cccdb4117269247694f9add20f088173c2)) -### Bug Fixes -* updated dev-cli ([bbfac28](https://github.com/oclif/cli/commit/bbfac28)) - -## [1.2.9](https://github.com/oclif/cli/compare/842fa2723d9026a4d9dd6d52194a989c0b30ae7a...v1.2.9) (2018-02-15) +## [0.32.16](https://github.com/oclif/oclif/compare/v0.32.15...v0.32.16) (2018-02-02) ### Bug Fixes -* improve docs ([cc5fd9b](https://github.com/oclif/cli/commit/cc5fd9b)) +* use yarn, not yarn install ([ff61a7f](https://github.com/oclif/oclif/commit/ff61a7fdc6a8d248e256f5396c74e94d4a6b81f9)) - -## [1.2.8](https://github.com/oclif/cli/compare/32ca869f48afcda131db592f9dc6a6a5cd30e193...v1.2.8) (2018-02-15) -### Bug Fixes +## [0.32.15](https://github.com/oclif/oclif/compare/v0.32.14...v0.32.15) (2018-02-02) -* use github for snyk ([842fa27](https://github.com/oclif/cli/commit/842fa27)) - -## [1.2.7](https://github.com/oclif/cli/compare/6bf6fcd9ac7e7271c225fef36b3ab91baac14a82...v1.2.7) (2018-02-15) +### Bug Fixes +* fixed indentation ([0ee469a](https://github.com/oclif/oclif/commit/0ee469a0127736db65fc23c90332ab81043f8dea)) +* use strings instead of variable ([8e8b9a7](https://github.com/oclif/oclif/commit/8e8b9a79f0f93bf3a7e6104f6a619b4d24bb4d52)) -### Bug Fixes -* doc improvements ([9ebd831](https://github.com/oclif/cli/commit/9ebd831)) -* updated dev-cli ([32ca869](https://github.com/oclif/cli/commit/32ca869)) - -## [1.2.6](https://github.com/oclif/cli/compare/7997c864efc2e04f62a95838f73e9967a8d8e0a5...v1.2.6) (2018-02-15) +## [0.32.14](https://github.com/oclif/oclif/compare/v0.32.13...v0.32.14) (2018-02-02) ### Bug Fixes -* updated deps ([6bf6fcd](https://github.com/oclif/cli/commit/6bf6fcd)) +* add bin scripts to files ([a95f10c](https://github.com/oclif/oclif/commit/a95f10cf176d975537cb1696c8ab8ddcd4b2efd3)) +* added bin script to pjson ([190cb30](https://github.com/oclif/oclif/commit/190cb30a86e8674bc09ba9fcd675d67bb5083c2d)) - -## [1.2.5](https://github.com/oclif/cli/compare/6f858e466b938c9c09865e35c9cd579ba2a030cb...v1.2.5) (2018-02-14) -### Bug Fixes +## [0.32.13](https://github.com/oclif/oclif/compare/v0.32.12...v0.32.13) (2018-02-02) -* run version command ([7997c86](https://github.com/oclif/cli/commit/7997c86)) - -## [1.2.4](https://github.com/oclif/cli/compare/1171d36e5984234c2e964857ebd4f168792726d5...v1.2.4) (2018-02-14) +### Bug Fixes +* improve experience when overwiting existing base ([f79dfef](https://github.com/oclif/oclif/commit/f79dfef683853e6c6122010866a3c206d2d6b134)) +* updated deps ([f2d3b5d](https://github.com/oclif/oclif/commit/f2d3b5d77719508cd3247e294efeeaee9def7fb6)) +* use new plugins ([7c58310](https://github.com/oclif/oclif/commit/7c58310d686f0ed7fcf2917efcf53b0e457faa5c)) -### Bug Fixes -* docs ([6f858e4](https://github.com/oclif/cli/commit/6f858e4)) - -## [1.2.3](https://github.com/oclif/cli/compare/c2b8476dd87eade0330fd87576705833462db597...v1.2.3) (2018-02-14) +## [0.32.12](https://github.com/oclif/oclif/compare/v0.32.11...v0.32.12) (2018-02-02) ### Bug Fixes -* add docs ([e6d3dab](https://github.com/oclif/cli/commit/e6d3dab)) -* add docs ([f314205](https://github.com/oclif/cli/commit/f314205)) -* updated readme links ([1171d36](https://github.com/oclif/cli/commit/1171d36)) +* do not install dev deps on release ([8ba2b5f](https://github.com/oclif/oclif/commit/8ba2b5f0b87683fb1d06a2a521afb69913a80129)) - -## [1.2.2](https://github.com/oclif/cli/compare/740c0d75f64ef09e9e88158bf42e31d3cea49c5d...v1.2.2) (2018-02-14) -### Bug Fixes +## [0.32.11](https://github.com/oclif/oclif/compare/v0.32.10...v0.32.11) (2018-02-02) -* doc improvements ([c2b8476](https://github.com/oclif/cli/commit/c2b8476)) - -## [1.2.1](https://github.com/oclif/cli/compare/c8d0f11cb67b4abf4c1bb1744b58bb45317e538c...v1.2.1) (2018-02-14) +### Bug Fixes +* consolidate circle jobs ([d72884d](https://github.com/oclif/oclif/commit/d72884dfe10aa6780e8875eed99c7a8920b14817)) +* consolidate circle jobs ([9f3c2f2](https://github.com/oclif/oclif/commit/9f3c2f2fec229ddb570f0c14c46d839713c7a38b)) -### Bug Fixes -* doc improvements ([740c0d7](https://github.com/oclif/cli/commit/740c0d7)) - -# [1.2.0](https://github.com/oclif/cli/compare/65b831cdf4e3c85748f7a2b71331d37961087be9...v1.2.0) (2018-02-14) +## [0.32.10](https://github.com/oclif/oclif/compare/v0.32.9...v0.32.10) (2018-02-02) ### Bug Fixes -* set bin for plugins ([c8d0f11](https://github.com/oclif/cli/commit/c8d0f11)) - +* use name in concurrently ([1384b55](https://github.com/oclif/oclif/commit/1384b55ba5218bded587c7bcb7ceeff41da69f1e)) -### Features -* added readme toc ([2cdba83](https://github.com/oclif/cli/commit/2cdba83)) - -## [1.1.2](https://github.com/oclif/cli/compare/218101cb0c3124a5676ea22b05cf4b4defeb0208...v1.1.2) (2018-02-14) +## [0.32.9](https://github.com/oclif/oclif/compare/v0.32.8...v0.32.9) (2018-02-02) ### Bug Fixes -* automatically replace readme on generation ([65b831c](https://github.com/oclif/cli/commit/65b831c)) +* fixed yarn mutex ([43335e9](https://github.com/oclif/oclif/commit/43335e983141cb2c2379579d6b7f673a94d6cdf5)) - -## [1.1.1](https://github.com/oclif/cli/compare/12af0a7fe82da6c5b7e38b3e9505e218e51f565d...v1.1.1) (2018-02-14) -### Bug Fixes +## [0.32.8](https://github.com/oclif/oclif/compare/v0.32.7...v0.32.8) (2018-02-02) -* fixed lint issue ([218101c](https://github.com/oclif/cli/commit/218101c)) -* move nps-utils to deps ([52c0012](https://github.com/oclif/cli/commit/52c0012)) -* remove unused title ([234d83a](https://github.com/oclif/cli/commit/234d83a)) - -# [1.1.0](https://github.com/oclif/cli/compare/c3446976042b13715d7e3c4c2b07804f6fea81c1...v1.1.0) (2018-02-13) +### Bug Fixes +* add another retry ([6dfe207](https://github.com/oclif/oclif/commit/6dfe2079f518d99e68d91a584254e76d8232dd46)) +* add another workflow for caching ([5fe5d11](https://github.com/oclif/oclif/commit/5fe5d110fc7732b6521a1acf311b0ae84d0240a4)) +* cache after release ([a7e0d14](https://github.com/oclif/oclif/commit/a7e0d141cf5a65a9faf202998a5c53c32fcb695c)) -### Features -* add readme content ([12af0a7](https://github.com/oclif/cli/commit/12af0a7)) - -## [1.0.6](https://github.com/oclif/cli/compare/17f19f2e9b37dfd62f51f15cbdf542158ace16d8...v1.0.6) (2018-02-13) +## [0.32.7](https://github.com/oclif/oclif/compare/v0.32.6...v0.32.7) (2018-02-02) ### Bug Fixes -* make linter happy ([c344697](https://github.com/oclif/cli/commit/c344697)) -* updated deps ([2b8fa8a](https://github.com/oclif/cli/commit/2b8fa8a)) +* add mutex so tests can run in parallel ([b03b605](https://github.com/oclif/oclif/commit/b03b60552d5d9a46e982a6f657fb033c1008af72)) +* attach workspace when releasing ([daa43ea](https://github.com/oclif/oclif/commit/daa43ead11cd86d0d73cc8b999bc4658864c01c0)) - -## [1.0.5](https://github.com/oclif/cli/compare/5c832ff35260be26461fc15bd40a8b0fe82c9f9e...v1.0.5) (2018-02-13) -### Bug Fixes +## [0.32.6](https://github.com/oclif/oclif/compare/v0.32.5...v0.32.6) (2018-02-02) -* use v1 of nyc-config ([17f19f2](https://github.com/oclif/cli/commit/17f19f2)) - -## [1.0.4](https://github.com/oclif/cli/compare/7e918c9d6a503d0ff1a8a262a545d0a2f3588478...v1.0.4) (2018-02-13) +### Bug Fixes +* circle cache improvements ([7e9c3d0](https://github.com/oclif/oclif/commit/7e9c3d0e045b49ab2957c9888d60b1c421243abc)) +* fixed plugin circle config ([85b5640](https://github.com/oclif/oclif/commit/85b56406a591cde36f9586fbac671850d7b80848)) -### Bug Fixes -* use v1 of nyc-config ([5c832ff](https://github.com/oclif/cli/commit/5c832ff)) - -## [1.0.2](https://github.com/oclif/cli/compare/d4c5efe21fdcaace6560ec3c6afb237c8b8d80e5...v1.0.2) (2018-02-13) +## [0.32.5](https://github.com/oclif/oclif/compare/v0.32.4...v0.32.5) (2018-02-02) ### Bug Fixes -* updated tslint ([8b465d4](https://github.com/oclif/cli/commit/8b465d4)) +* fixed global add ([6e5fb0e](https://github.com/oclif/oclif/commit/6e5fb0e3c9793e1daeb1f6fa8d80204970f1e611)) +* move setup_git into greenkeeper ([b6c87d9](https://github.com/oclif/oclif/commit/b6c87d9ff8ad5321ed77ad8e1a8d67eeaf1bb41f)) - -## [1.0.1](https://github.com/oclif/cli/compare/cb1ab3507bc44d6039a4b9ce226a8ba7e5e4f247...v1.0.1) (2018-02-13) -### Bug Fixes +## [0.32.4](https://github.com/oclif/oclif/compare/v0.32.3...v0.32.4) (2018-02-02) -* oclif rename ([d4c5efe](https://github.com/oclif/cli/commit/d4c5efe)) - -# 1.0.0 (2018-02-13) +### Bug Fixes +* fixed restore cache step ([20de5dc](https://github.com/oclif/oclif/commit/20de5dcd2abf943b2d5004d1027c09208b910c3d)) -### Bug Fixes -* add [@dxcli](https://github.com/dxcli)/dev-semantic-release ([ff9c542](https://github.com/oclif/cli/commit/ff9c542)) -* add another retry ([6dfe207](https://github.com/oclif/cli/commit/6dfe207)) -* add another workflow for caching ([5fe5d11](https://github.com/oclif/cli/commit/5fe5d11)) -* add bin scripts to files ([a95f10c](https://github.com/oclif/cli/commit/a95f10c)) -* add catch handler ([b8848a4](https://github.com/oclif/cli/commit/b8848a4)) -* add commitlint ([f60d9f2](https://github.com/oclif/cli/commit/f60d9f2)) -* add config to deps ([354683d](https://github.com/oclif/cli/commit/354683d)) -* add dev deps ([98ea830](https://github.com/oclif/cli/commit/98ea830)) -* add dev deps for single ([efc07dc](https://github.com/oclif/cli/commit/efc07dc)) -* add docs and readme to semantic-release ([75b4a74](https://github.com/oclif/cli/commit/75b4a74)) -* add errors to deps ([fd0e9ed](https://github.com/oclif/cli/commit/fd0e9ed)) -* add globby ([bf2bfab](https://github.com/oclif/cli/commit/bf2bfab)) -* add manifest to gitignore ([692ca32](https://github.com/oclif/cli/commit/692ca32)) -* add mocha-junit-reporter ([a1a4a08](https://github.com/oclif/cli/commit/a1a4a08)) -* add mutex so tests can run in parallel ([b03b605](https://github.com/oclif/cli/commit/b03b605)) -* add nyc ([a25c802](https://github.com/oclif/cli/commit/a25c802)) -* add nyc config ([21f25d0](https://github.com/oclif/cli/commit/21f25d0)) -* add nyc config ([73b448b](https://github.com/oclif/cli/commit/73b448b)) -* add nyc to appveyor ([b0216f1](https://github.com/oclif/cli/commit/b0216f1)) -* add other commands ([394b5f0](https://github.com/oclif/cli/commit/394b5f0)) -* add peerDependencies ([7be5fd1](https://github.com/oclif/cli/commit/7be5fd1)) -* add READMEs ([f78cf18](https://github.com/oclif/cli/commit/f78cf18)) -* add semantic-release locally instead ([c8bc421](https://github.com/oclif/cli/commit/c8bc421)) -* add semantic-release step if not mocha ([143532c](https://github.com/oclif/cli/commit/143532c)) -* add smoke tests to appveyor ([f33a88d](https://github.com/oclif/cli/commit/f33a88d)) -* add templates to pack ([ea06630](https://github.com/oclif/cli/commit/ea06630)) -* add TS parsing for commands ([68c2023](https://github.com/oclif/cli/commit/68c2023)) -* add yarn circle step ([52610cd](https://github.com/oclif/cli/commit/52610cd)) -* added bin script to pjson ([190cb30](https://github.com/oclif/cli/commit/190cb30)) -* added clean step ([da22f7f](https://github.com/oclif/cli/commit/da22f7f)) -* added docs ([b5d798e](https://github.com/oclif/cli/commit/b5d798e)) -* added some smoke tests ([24664f1](https://github.com/oclif/cli/commit/24664f1)) -* anycli rename ([50823f4](https://github.com/oclif/cli/commit/50823f4)) -* attach workspace when releasing ([daa43ea](https://github.com/oclif/cli/commit/daa43ea)) -* better repo handling ([4b1add8](https://github.com/oclif/cli/commit/4b1add8)) -* bump cache ([9773ed7](https://github.com/oclif/cli/commit/9773ed7)) -* bump cli-ux ([f4f0f3f](https://github.com/oclif/cli/commit/f4f0f3f)) -* bump cli-ux ([adf7aad](https://github.com/oclif/cli/commit/adf7aad)) -* bump dev-cli ([39e5b5f](https://github.com/oclif/cli/commit/39e5b5f)) -* bump dev-cli ([6d4764f](https://github.com/oclif/cli/commit/6d4764f)) -* bump semantic-release ([48b6b4c](https://github.com/oclif/cli/commit/48b6b4c)) -* cache after release ([a7e0d14](https://github.com/oclif/cli/commit/a7e0d14)) -* circle cache improvements ([7e9c3d0](https://github.com/oclif/cli/commit/7e9c3d0)) -* consolidate circle jobs ([9f3c2f2](https://github.com/oclif/cli/commit/9f3c2f2)) -* consolidate circle jobs ([d72884d](https://github.com/oclif/cli/commit/d72884d)) -* consolidate commands and tests ([b90320a](https://github.com/oclif/cli/commit/b90320a)) -* default to not having options ([72dd9d9](https://github.com/oclif/cli/commit/72dd9d9)) -* delete all files from existing example ([0081edd](https://github.com/oclif/cli/commit/0081edd)) -* dev dep ([46dd0a3](https://github.com/oclif/cli/commit/46dd0a3)) -* disable yarn check for now ([5637b46](https://github.com/oclif/cli/commit/5637b46)) -* do not install dev deps on release ([8ba2b5f](https://github.com/oclif/cli/commit/8ba2b5f)) -* do not set anycli if empty ([3c7bab9](https://github.com/oclif/cli/commit/3c7bab9)) -* dont try to get version of plugin ([ad3544b](https://github.com/oclif/cli/commit/ad3544b)) -* ensure /lib is always gitignored for ts ([07c7e38](https://github.com/oclif/cli/commit/07c7e38)) -* explicitly add [@dxcli](https://github.com/dxcli)/nyc-config ([9944ead](https://github.com/oclif/cli/commit/9944ead)) -* export lib ([ad28e28](https://github.com/oclif/cli/commit/ad28e28)) -* fetch semantic release when needed ([db289ca](https://github.com/oclif/cli/commit/db289ca)) -* fetch semantic release when needed ([7340723](https://github.com/oclif/cli/commit/7340723)) -* fix commitlint ([9aa2212](https://github.com/oclif/cli/commit/9aa2212)) -* fix nyc on circle ([8257b7a](https://github.com/oclif/cli/commit/8257b7a)) -* fix releases ([435a96d](https://github.com/oclif/cli/commit/435a96d)) -* fix yarn execs ([93b3f16](https://github.com/oclif/cli/commit/93b3f16)) -* fixed bin name ([5995e7f](https://github.com/oclif/cli/commit/5995e7f)) -* fixed circle config ([9a8166e](https://github.com/oclif/cli/commit/9a8166e)) -* fixed command generator ([8c5c179](https://github.com/oclif/cli/commit/8c5c179)) -* fixed directory in release script ([a4550b7](https://github.com/oclif/cli/commit/a4550b7)) -* fixed global add ([6e5fb0e](https://github.com/oclif/cli/commit/6e5fb0e)) -* fixed greenkeeper script ([d904f25](https://github.com/oclif/cli/commit/d904f25)) -* fixed greenkeeper script ([b8be73b](https://github.com/oclif/cli/commit/b8be73b)) -* fixed indentation ([0ee469a](https://github.com/oclif/cli/commit/0ee469a)) -* fixed issues with package-scripts ([571facb](https://github.com/oclif/cli/commit/571facb)) -* fixed linters ([5ac2d4c](https://github.com/oclif/cli/commit/5ac2d4c)) -* fixed manifest location ([36f79a8](https://github.com/oclif/cli/commit/36f79a8)) -* fixed manifest location ([14802aa](https://github.com/oclif/cli/commit/14802aa)) -* fixed mocha in js ([dbc44bf](https://github.com/oclif/cli/commit/dbc44bf)) -* fixed plugin circle config ([85b5640](https://github.com/oclif/cli/commit/85b5640)) -* fixed references to deps ([353cac2](https://github.com/oclif/cli/commit/353cac2)) -* fixed restore cache step ([20de5dc](https://github.com/oclif/cli/commit/20de5dc)) -* fixed single bin script ([a8a4b33](https://github.com/oclif/cli/commit/a8a4b33)) -* fixed typescript output ([b3bde94](https://github.com/oclif/cli/commit/b3bde94)) -* fixed yarn mutex ([43335e9](https://github.com/oclif/cli/commit/43335e9)) -* fixed yarn step in circle config ([8bdadc3](https://github.com/oclif/cli/commit/8bdadc3)) -* fixed yarn step in circle config ([e6e19c4](https://github.com/oclif/cli/commit/e6e19c4)) -* fixing example publishing ([d03efe7](https://github.com/oclif/cli/commit/d03efe7)) -* fixing example publishing ([6087f9c](https://github.com/oclif/cli/commit/6087f9c)) -* fixing example publishing ([a333610](https://github.com/oclif/cli/commit/a333610)) -* fixing single ([354f46b](https://github.com/oclif/cli/commit/354f46b)) -* fixing single and adding windows cmd scripts ([3659d86](https://github.com/oclif/cli/commit/3659d86)) -* generator improvements ([50c303f](https://github.com/oclif/cli/commit/50c303f)) -* git username ([11b4b58](https://github.com/oclif/cli/commit/11b4b58)) -* globby not needed for single ([8d34141](https://github.com/oclif/cli/commit/8d34141)) -* ignore kebab case on package-scripts ([e3ca364](https://github.com/oclif/cli/commit/e3ca364)) -* improve experience when overwiting existing base ([f79dfef](https://github.com/oclif/cli/commit/f79dfef)) -* improve TS loading ([8d42d1e](https://github.com/oclif/cli/commit/8d42d1e)) -* lower loglevel ([5286151](https://github.com/oclif/cli/commit/5286151)) -* mkdir ([dc8a2d1](https://github.com/oclif/cli/commit/dc8a2d1)) -* mkdir ([09d86ae](https://github.com/oclif/cli/commit/09d86ae)) -* mkdirp reports ([ab4b02f](https://github.com/oclif/cli/commit/ab4b02f)) -* move generator into this package ([d379e63](https://github.com/oclif/cli/commit/d379e63)) -* move help to devPlugins for pluginsg ([157f1d6](https://github.com/oclif/cli/commit/157f1d6)) -* move setup_git into greenkeeper ([b6c87d9](https://github.com/oclif/cli/commit/b6c87d9)) -* no longer need engine ([bd41ae3](https://github.com/oclif/cli/commit/bd41ae3)) -* only build on release ([fecec26](https://github.com/oclif/cli/commit/fecec26)) -* only build on release ([0f5e7db](https://github.com/oclif/cli/commit/0f5e7db)) -* only build on release ([dba0a63](https://github.com/oclif/cli/commit/dba0a63)) -* only push eslint if it is not empty ([ef9a649](https://github.com/oclif/cli/commit/ef9a649)) -* only sort if array ([6557c82](https://github.com/oclif/cli/commit/6557c82)) -* only use concurrently when needed ([bd567e1](https://github.com/oclif/cli/commit/bd567e1)) -* overwrite scripts ([fc9bba9](https://github.com/oclif/cli/commit/fc9bba9)) -* parser is now exported from command ([6f192b1](https://github.com/oclif/cli/commit/6f192b1)) -* reduce dependencies needed in dev ([2a0bbad](https://github.com/oclif/cli/commit/2a0bbad)) -* release example plugins ([4500eed](https://github.com/oclif/cli/commit/4500eed)) -* release examples ([6a1c3df](https://github.com/oclif/cli/commit/6a1c3df)) -* releases ([fbdc9c2](https://github.com/oclif/cli/commit/fbdc9c2)) -* releases ([ba33440](https://github.com/oclif/cli/commit/ba33440)) -* remove fromScratch ([65d35c5](https://github.com/oclif/cli/commit/65d35c5)) -* remove release task from nps ([38e15dd](https://github.com/oclif/cli/commit/38e15dd)) -* rename dev packages ([e85a5cf](https://github.com/oclif/cli/commit/e85a5cf)) -* rename dev-test to test ([2a2bf9b](https://github.com/oclif/cli/commit/2a2bf9b)) -* rename greenkeeper -> yarn ([78afe96](https://github.com/oclif/cli/commit/78afe96)) -* rename package for now ([8e2f0c8](https://github.com/oclif/cli/commit/8e2f0c8)) -* rename repo ([37ca4cc](https://github.com/oclif/cli/commit/37ca4cc)) -* rename to oclif ([cb1ab35](https://github.com/oclif/cli/commit/cb1ab35)) -* restore cache if exact match ([0f27493](https://github.com/oclif/cli/commit/0f27493)) -* run build before tests ([05765fa](https://github.com/oclif/cli/commit/05765fa)) -* run nps build before release ([0a289a1](https://github.com/oclif/cli/commit/0a289a1)) -* scope templates ([2f03b43](https://github.com/oclif/cli/commit/2f03b43)) -* semantic-release bin ([8183ae5](https://github.com/oclif/cli/commit/8183ae5)) -* semantic-release bin ([6addee5](https://github.com/oclif/cli/commit/6addee5)) -* semantic-release bin ([ba77257](https://github.com/oclif/cli/commit/ba77257)) -* semantic-release bin ([2fcef58](https://github.com/oclif/cli/commit/2fcef58)) -* semantic-release bin ([813d91b](https://github.com/oclif/cli/commit/813d91b)) -* send args to yarn ([3d851ba](https://github.com/oclif/cli/commit/3d851ba)) -* share cache in tests ([1a33371](https://github.com/oclif/cli/commit/1a33371)) -* simplified bin scripts ([8b36b61](https://github.com/oclif/cli/commit/8b36b61)) -* slight performance boost in appveyor ([314398b](https://github.com/oclif/cli/commit/314398b)) -* smoke tests first ([e324c14](https://github.com/oclif/cli/commit/e324c14)) -* sort plugins if exists ([b729296](https://github.com/oclif/cli/commit/b729296)) -* sort plugins if exists ([8d8fe71](https://github.com/oclif/cli/commit/8d8fe71)) -* tests should use chai ([16fdb7b](https://github.com/oclif/cli/commit/16fdb7b)) -* trap git push errors ([af327b3](https://github.com/oclif/cli/commit/af327b3)) -* unescape commit message ([86c4556](https://github.com/oclif/cli/commit/86c4556)) -* updated config ([40d2500](https://github.com/oclif/cli/commit/40d2500)) -* updated config ([76c5225](https://github.com/oclif/cli/commit/76c5225)) -* updated deps ([7d6f276](https://github.com/oclif/cli/commit/7d6f276)) -* updated deps ([c6e576a](https://github.com/oclif/cli/commit/c6e576a)) -* updated deps ([f2d3b5d](https://github.com/oclif/cli/commit/f2d3b5d)) -* updated deps ([9c5e204](https://github.com/oclif/cli/commit/9c5e204)) -* updated deps ([05d0bf0](https://github.com/oclif/cli/commit/05d0bf0)) -* updated dev-cli ([587e09a](https://github.com/oclif/cli/commit/587e09a)) -* updated generator ([608d365](https://github.com/oclif/cli/commit/608d365)) -* updated generator ([906425e](https://github.com/oclif/cli/commit/906425e)) -* updated generator ([08e5c6b](https://github.com/oclif/cli/commit/08e5c6b)) -* updated generator ([4426bd9](https://github.com/oclif/cli/commit/4426bd9)) -* updates from config/command ([b2d0733](https://github.com/oclif/cli/commit/b2d0733)) -* use -o for manifest building ([2171042](https://github.com/oclif/cli/commit/2171042)) -* use [@anycli](https://github.com/anycli)/errors ([82530fd](https://github.com/oclif/cli/commit/82530fd)) -* use [@anycli](https://github.com/anycli)/errors ([348d7e8](https://github.com/oclif/cli/commit/348d7e8)) -* use [@anycli](https://github.com/anycli)/errors ([90afa69](https://github.com/oclif/cli/commit/90afa69)) -* use git add when not using semantic release ([b66c1e9](https://github.com/oclif/cli/commit/b66c1e9)) -* use latest generator-dxcli ([5bd5145](https://github.com/oclif/cli/commit/5bd5145)) -* use name in concurrently ([1384b55](https://github.com/oclif/cli/commit/1384b55)) -* use new circle config ([2c9d9c7](https://github.com/oclif/cli/commit/2c9d9c7)) -* use new linter rules ([2fbd4f9](https://github.com/oclif/cli/commit/2fbd4f9)) -* use new plugins ([7c58310](https://github.com/oclif/cli/commit/7c58310)) -* use new test format ([67fe975](https://github.com/oclif/cli/commit/67fe975)) -* use simpler command/config setup ([b5b7377](https://github.com/oclif/cli/commit/b5b7377)) -* use strings instead of variable ([8e8b9a7](https://github.com/oclif/cli/commit/8e8b9a7)) -* use stylist tslint formatter ([9542a1f](https://github.com/oclif/cli/commit/9542a1f)) -* use tmp dir on CI ([c98a8e4](https://github.com/oclif/cli/commit/c98a8e4)) -* use yarn, not yarn install ([ff61a7f](https://github.com/oclif/cli/commit/ff61a7f)) - - -### Features - -* add bin script for local plugin dev ([552df43](https://github.com/oclif/cli/commit/552df43)) -* add cache step to circleci ([fcef9fa](https://github.com/oclif/cli/commit/fcef9fa)) -* add cache step to circleci ([3efa4c5](https://github.com/oclif/cli/commit/3efa4c5)) -* add manifest to package ([2fc517c](https://github.com/oclif/cli/commit/2fc517c)) -* add mocha script ([4efb9ab](https://github.com/oclif/cli/commit/4efb9ab)) -* added --help and --version ([07e5a96](https://github.com/oclif/cli/commit/07e5a96)) -* added command generator ([f6fef1f](https://github.com/oclif/cli/commit/f6fef1f)) -* added generator ([6e96584](https://github.com/oclif/cli/commit/6e96584)) -* added help and not-found plugins to multi ([844ab18](https://github.com/oclif/cli/commit/844ab18)) -* generator-dxcli@1.10.5 ([bcea220](https://github.com/oclif/cli/commit/bcea220)) -* generator-dxcli@1.11.0 ([58b907c](https://github.com/oclif/cli/commit/58b907c)) -* generator-dxcli@1.11.1 ([847459d](https://github.com/oclif/cli/commit/847459d)) -* generator-dxcli@1.11.2 ([3eb57a4](https://github.com/oclif/cli/commit/3eb57a4)) -* generator-dxcli@1.11.3 ([63f333d](https://github.com/oclif/cli/commit/63f333d)) -* generator-dxcli@1.11.4 ([9aed3c0](https://github.com/oclif/cli/commit/9aed3c0)) -* generator-dxcli@1.11.5 ([04e4ce1](https://github.com/oclif/cli/commit/04e4ce1)) -* generator-dxcli@1.12.0 ([6dca853](https://github.com/oclif/cli/commit/6dca853)) -* generator-dxcli@1.12.1 ([87c3b50](https://github.com/oclif/cli/commit/87c3b50)) -* generator-dxcli@1.12.2 ([3665a3e](https://github.com/oclif/cli/commit/3665a3e)) -* generator-dxcli@1.12.3 ([b7bcf58](https://github.com/oclif/cli/commit/b7bcf58)) -* generator-dxcli@1.13.0 ([0240fe8](https://github.com/oclif/cli/commit/0240fe8)) -* generator-dxcli@1.14.0 ([792ba5a](https://github.com/oclif/cli/commit/792ba5a)) -* generator-dxcli@1.14.1 ([a29e7a1](https://github.com/oclif/cli/commit/a29e7a1)) -* generator-dxcli@1.14.2 ([e6c0d87](https://github.com/oclif/cli/commit/e6c0d87)) -* generator-dxcli@1.14.3 ([b1b8ac3](https://github.com/oclif/cli/commit/b1b8ac3)) -* generator-dxcli@1.14.4 ([d2a61f9](https://github.com/oclif/cli/commit/d2a61f9)) -* generator-dxcli@1.15.0 ([fdd7270](https://github.com/oclif/cli/commit/fdd7270)) -* generator-dxcli@1.15.2 ([8b1d993](https://github.com/oclif/cli/commit/8b1d993)) -* generator-dxcli@1.15.3 ([338f439](https://github.com/oclif/cli/commit/338f439)) -* make examples follow version of create-dxcli ([de2b9fc](https://github.com/oclif/cli/commit/de2b9fc)) -* release examples ([2f901ca](https://github.com/oclif/cli/commit/2f901ca)) -* release examples automatically ([6c95bd9](https://github.com/oclif/cli/commit/6c95bd9)) -* rename package to [@anycli](https://github.com/anycli)/cli ([ec28865](https://github.com/oclif/cli/commit/ec28865)) -* simplified package-scripts ([f31fae9](https://github.com/oclif/cli/commit/f31fae9)) -* updated generator ([13e5829](https://github.com/oclif/cli/commit/13e5829)) -* updated generator ([87b5922](https://github.com/oclif/cli/commit/87b5922)) -* updated generator-dxcli ([b2be420](https://github.com/oclif/cli/commit/b2be420)) -* use new parser model ([7e7f7d3](https://github.com/oclif/cli/commit/7e7f7d3)) - -## [0.33.23](https://github.com/anycli/cli/compare/05d0bf0460b2225585d0f4dd14c1d4186b76f48a...v0.33.23) (2018-02-07) +## [0.32.3](https://github.com/oclif/oclif/compare/v0.32.1...v0.32.3) (2018-02-02) ### Bug Fixes -* better repo handling ([4b1add8](https://github.com/anycli/cli/commit/4b1add8)) +* add yarn circle step ([52610cd](https://github.com/oclif/oclif/commit/52610cd57c55b0aa3511d04bbed07da31289b8b7)) +* fixed greenkeeper script ([b8be73b](https://github.com/oclif/oclif/commit/b8be73b1a7d4d5781f81719a5f265587899685ce)) +* fixed greenkeeper script ([d904f25](https://github.com/oclif/oclif/commit/d904f25e231177c153ddbb2de24d5fed4c69ba62)) +* fixed yarn step in circle config ([8bdadc3](https://github.com/oclif/oclif/commit/8bdadc3033a7726af4b2a3c739d0aa5418b729c3)) +* fixed yarn step in circle config ([e6e19c4](https://github.com/oclif/oclif/commit/e6e19c4e0c08310b613b0b3ebe30b0d45e694464)) +* restore cache if exact match ([0f27493](https://github.com/oclif/oclif/commit/0f27493ec8eadc56a1049160317ebf17e492f113)) +* use new circle config ([2c9d9c7](https://github.com/oclif/oclif/commit/2c9d9c735600db9082e5000a32dc2508e8e1c564)) - -## [0.33.22](https://github.com/anycli/cli/compare/b5d798e1b405aeb6edaa166919fa3a19357f00a9...v0.33.22) (2018-02-07) -### Bug Fixes +## [0.32.1](https://github.com/oclif/oclif/compare/v0.32.0...v0.32.1) (2018-02-01) -* updated deps ([05d0bf0](https://github.com/anycli/cli/commit/05d0bf0)) - -## [0.33.21](https://github.com/anycli/cli/compare/da22f7faec395b0776d53ddf65941ed0c5829457...v0.33.21) (2018-02-07) +### Bug Fixes +* fixed circle config ([9a8166e](https://github.com/oclif/oclif/commit/9a8166e9aa82614c80e238a64b89c3396de42d12)) -### Bug Fixes -* added docs ([b5d798e](https://github.com/anycli/cli/commit/b5d798e)) - -## [0.33.20](https://github.com/anycli/cli/compare/6d4764f1a1f96dc3fbe842ed942dd9964e1e451a...v0.33.20) (2018-02-07) +# [0.32.0](https://github.com/oclif/oclif/compare/v0.31.1...v0.32.0) (2018-02-01) ### Bug Fixes -* added clean step ([da22f7f](https://github.com/anycli/cli/commit/da22f7f)) +* do not set anycli if empty ([3c7bab9](https://github.com/oclif/oclif/commit/3c7bab978384c20e4697dc64aecc3f0f80e1c836)) + - -## [0.33.19](https://github.com/anycli/cli/compare/b66c1e9187e0b4fe6e137fbe52df87c73408ebcb...v0.33.19) (2018-02-07) +### Features +* add cache step to circleci ([3efa4c5](https://github.com/oclif/oclif/commit/3efa4c533d1fc76ec4f737132eb60ea7322fe9d3)) +* add cache step to circleci ([fcef9fa](https://github.com/oclif/oclif/commit/fcef9fa75ea9a74ad33096cea55d1025a9f23577)) -### Bug Fixes -* add docs and readme to semantic-release ([75b4a74](https://github.com/anycli/cli/commit/75b4a74)) -* bump dev-cli ([6d4764f](https://github.com/anycli/cli/commit/6d4764f)) - -## [0.33.18](https://github.com/anycli/cli/compare/39e5b5f234e033780a5942e355898a53c51a21f8...v0.33.18) (2018-02-07) +## [0.31.1](https://github.com/oclif/oclif/compare/v0.31.0...v0.31.1) (2018-02-01) ### Bug Fixes -* use git add when not using semantic release ([b66c1e9](https://github.com/anycli/cli/commit/b66c1e9)) +* rename repo ([37ca4cc](https://github.com/oclif/oclif/commit/37ca4cc50179eab01fcba69e6c8bcbf5e5424b70)) +* use new linter rules ([2fbd4f9](https://github.com/oclif/oclif/commit/2fbd4f9f2e3c06f8a8092b2cd3e759759784d4a1)) - -## [0.33.17](https://github.com/anycli/cli/compare/76c5225195f83f661decc00dba24f45ecf80638c...v0.33.17) (2018-02-07) -### Bug Fixes +# [0.31.0](https://github.com/oclif/oclif/compare/v0.30.7...v0.31.0) (2018-02-01) -* bump dev-cli ([39e5b5f](https://github.com/anycli/cli/commit/39e5b5f)) - -## [0.33.16](https://github.com/anycli/cli/compare/587e09a3c1956d4abd0f1c375cd95a8e7ce542b8...v0.33.16) (2018-02-07) +### Features +* rename package to @anycli/cli ([ec28865](https://github.com/oclif/oclif/commit/ec2886542814433b5fa2942efbd0b98a8ea48ace)) -### Bug Fixes -* updated config ([76c5225](https://github.com/anycli/cli/commit/76c5225)) - -## [0.33.15](https://github.com/anycli/cli/compare/9773ed77910d557b0f37bac7650beeea8c3bf9a3...v0.33.15) (2018-02-07) +## [0.30.7](https://github.com/oclif/oclif/compare/v0.30.6...v0.30.7) (2018-02-01) ### Bug Fixes -* updated dev-cli ([587e09a](https://github.com/anycli/cli/commit/587e09a)) - - -## [0.33.14](https://github.com/anycli/cli/compare/f78cf18904abbddb98172a79f231cf8368648da5...v0.33.14) (2018-02-07) +* smoke tests first ([e324c14](https://github.com/oclif/oclif/commit/e324c141548c6c025271fa0a4da721de670a60a7)) -### Bug Fixes - -* add manifest to gitignore ([692ca32](https://github.com/anycli/cli/commit/692ca32)) -* bump cache ([9773ed7](https://github.com/anycli/cli/commit/9773ed7)) - -## [0.33.13](https://github.com/anycli/cli/compare/50c303f3dd8f173c3f470cf26f964231f8d1f626...v0.33.13) (2018-02-06) +## [0.30.6](https://github.com/oclif/oclif/compare/v0.30.4...v0.30.6) (2018-02-01) ### Bug Fixes -* add config to deps ([354683d](https://github.com/anycli/cli/commit/354683d)) -* add errors to deps ([fd0e9ed](https://github.com/anycli/cli/commit/fd0e9ed)) +* add smoke tests to appveyor ([f33a88d](https://github.com/oclif/oclif/commit/f33a88d2cccda944ce585236a55e1be9f68bbdfe)) +* dont try to get version of plugin ([ad3544b](https://github.com/oclif/oclif/commit/ad3544b65ff6246708646393eaf7ce036b737898)) +* fix nyc on circle ([8257b7a](https://github.com/oclif/oclif/commit/8257b7a1b19e0a6c907b962ed11e4df735856062)) - -## [0.33.12](https://github.com/anycli/cli/compare/90afa69f0516a721736925c11997cb6b6cfb5051...v0.33.12) (2018-02-06) -### Bug Fixes +## [0.30.4](https://github.com/oclif/oclif/compare/v0.30.3...v0.30.4) (2018-02-01) -* generator improvements ([50c303f](https://github.com/anycli/cli/commit/50c303f)) - -## [0.33.11](https://github.com/anycli/cli/compare/348d7e8ac5b8cfc3c28d2d67df6e8b1312780fd5...v0.33.11) (2018-02-06) +### Bug Fixes +* added some smoke tests ([24664f1](https://github.com/oclif/oclif/commit/24664f10e2e7bc0597fa71aa17ff459769167315)) -### Bug Fixes -* use [@anycli](https://github.com/anycli)/errors ([90afa69](https://github.com/anycli/cli/commit/90afa69)) - -## [0.33.10](https://github.com/anycli/cli/compare/b8848a46e2df42be7883cc424cbfd340998c8e16...v0.33.10) (2018-02-06) +## [0.30.3](https://github.com/oclif/oclif/compare/v0.30.2...v0.30.3) (2018-02-01) ### Bug Fixes -* use [@anycli](https://github.com/anycli)/errors ([348d7e8](https://github.com/anycli/cli/commit/348d7e8)) -* use [@anycli](https://github.com/anycli)/errors ([82530fd](https://github.com/anycli/cli/commit/82530fd)) +* remove fromScratch ([65d35c5](https://github.com/oclif/oclif/commit/65d35c53097297d46163b4976a1f18cf53bfed38)) - -## [0.33.9](https://github.com/anycli/cli/compare/157f1d6807d1771dd7de7f5e2107a01e0d5fb6c3...v0.33.9) (2018-02-05) -### Bug Fixes +## [0.30.2](https://github.com/oclif/oclif/compare/v0.30.1...v0.30.2) (2018-02-01) -* add catch handler ([b8848a4](https://github.com/anycli/cli/commit/b8848a4)) - -## [0.33.8](https://github.com/anycli/cli/compare/8d34141c7ca7b1263eb04528305c0941f3f787de...v0.33.8) (2018-02-05) +### Bug Fixes +* fix commitlint ([9aa2212](https://github.com/oclif/oclif/commit/9aa22129f25dd7525f3e7b01edf01ee52ec6543c)) +* fix yarn execs ([93b3f16](https://github.com/oclif/oclif/commit/93b3f16c2ecd2f512f78c00f010fbc178bebcf6c)) -### Bug Fixes -* move help to devPlugins for pluginsg ([157f1d6](https://github.com/anycli/cli/commit/157f1d6)) - -## [0.33.7](https://github.com/anycli/cli/compare/bf2bfabfd95af2de5250acd4b2edfa9c559d7a5b...v0.33.7) (2018-02-05) +## [0.30.1](https://github.com/oclif/oclif/compare/v0.30.0...v0.30.1) (2018-02-01) ### Bug Fixes -* globby not needed for single ([8d34141](https://github.com/anycli/cli/commit/8d34141)) +* fixed linters ([5ac2d4c](https://github.com/oclif/oclif/commit/5ac2d4cc56ddbd3aa407155e02b0348cb3f20087)) +* fixed mocha in js ([dbc44bf](https://github.com/oclif/oclif/commit/dbc44bfe0eb6d16951823d0a51bfb56f698fb8b3)) +* fixed single bin script ([a8a4b33](https://github.com/oclif/oclif/commit/a8a4b33c6759ff7228857ea7133e25c292715bad)) +* fixing single ([354f46b](https://github.com/oclif/oclif/commit/354f46b0486648b434bb66d72e7387325f3f9ff0)) +* only use concurrently when needed ([bd567e1](https://github.com/oclif/oclif/commit/bd567e18d6ddf3caae744ade41c0c0f73602b660)) - -## [0.33.6](https://github.com/anycli/cli/compare/9542a1f6be95f8ea2abbe6d520cc21498c2372ee...v0.33.6) (2018-02-05) -### Bug Fixes +# [0.30.0](https://github.com/oclif/oclif/compare/v0.29.0...v0.30.0) (2018-02-01) -* add globby ([bf2bfab](https://github.com/anycli/cli/commit/bf2bfab)) -* updates from config/command ([b2d0733](https://github.com/anycli/cli/commit/b2d0733)) - -## [0.33.5](https://github.com/anycli/cli/compare/88c28e9209d7e55ad196f39bc358fefb8130177d...v0.33.5) (2018-02-05) +### Features +* added --help and --version ([07e5a96](https://github.com/oclif/oclif/commit/07e5a961dfc75dd750ec2453c2bce10bdb8ea91e)) -### Bug Fixes -* use stylist tslint formatter ([9542a1f](https://github.com/anycli/cli/commit/9542a1f)) - -## [0.33.4](https://github.com/anycli/cli/compare/b5b737797a9b7fbe9e1b762818e10e4f3b1e5380...v0.33.4) (2018-02-04) +# [0.29.0](https://github.com/oclif/oclif/compare/v0.28.16...v0.29.0) (2018-02-01) ### Bug Fixes -* no longer need engine ([bd41ae3](https://github.com/anycli/cli/commit/bd41ae3)) +* anycli rename ([50823f4](https://github.com/oclif/oclif/commit/50823f45e92d10a9970961719721b864de67830a)) +* consolidate commands and tests ([b90320a](https://github.com/oclif/oclif/commit/b90320a5dd3ef9e5808995c38d7d16d86b32ea03)) +* fixed command generator ([8c5c179](https://github.com/oclif/oclif/commit/8c5c179d2f1bb39b03565855670c5d6800d395ce)) +* rename package for now ([8e2f0c8](https://github.com/oclif/oclif/commit/8e2f0c818b364d3a01314bfc777d28a45e3e6575)) + - -## [0.33.3](https://github.com/anycli/cli/compare/5637b46450e185e9591be63475d2ca7fb819a3af...v0.33.3) (2018-02-03) +### Features +* added help and not-found plugins to multi ([844ab18](https://github.com/oclif/oclif/commit/844ab18e55794c4b6ac36168e0648b1e8222044f)) +* use new parser model ([7e7f7d3](https://github.com/oclif/oclif/commit/7e7f7d310b212c3105135d962ab232605a6122bc)) -### Bug Fixes -* use simpler command/config setup ([b5b7377](https://github.com/anycli/cli/commit/b5b7377)) - -## [0.33.2](https://github.com/anycli/cli/compare/14802aa23e3b81793163c602caff56cd277a3db0...v0.33.2) (2018-02-02) +## [0.28.16](https://github.com/oclif/oclif/compare/v0.28.15...v0.28.16) (2018-01-30) ### Bug Fixes -* disable yarn check for now ([5637b46](https://github.com/anycli/cli/commit/5637b46)) -* use -o for manifest building ([2171042](https://github.com/anycli/cli/commit/2171042)) +* only sort if array ([6557c82](https://github.com/oclif/oclif/commit/6557c82ee08b6ded4b7332a6dc6696f0c306792a)) - -## [0.33.1](https://github.com/anycli/cli/compare/2fc517cccdb4117269247694f9add20f088173c2...v0.33.1) (2018-02-02) -### Bug Fixes +## [0.28.15](https://github.com/oclif/oclif/compare/v0.28.12...v0.28.15) (2018-01-30) -* fixed manifest location ([14802aa](https://github.com/anycli/cli/commit/14802aa)) -* fixed manifest location ([36f79a8](https://github.com/anycli/cli/commit/36f79a8)) - -# [0.33.0](https://github.com/anycli/cli/compare/ff61a7fdc6a8d248e256f5396c74e94d4a6b81f9...v0.33.0) (2018-02-02) +### Bug Fixes +* remove release task from nps ([38e15dd](https://github.com/oclif/oclif/commit/38e15dd09586c4f228cec3b8ceb4723371f4e816)) +* slight performance boost in appveyor ([314398b](https://github.com/oclif/oclif/commit/314398bb37631a1eefafb9a60ffbbac5d0594db0)) +* sort plugins if exists ([b729296](https://github.com/oclif/oclif/commit/b7292967965fc9c1b8135930d6edb421bf4b4d1f)) +* sort plugins if exists ([8d8fe71](https://github.com/oclif/oclif/commit/8d8fe719629c933da8eb52c670d3ad810075bdaa)) -### Features -* add manifest to package ([2fc517c](https://github.com/anycli/cli/commit/2fc517c)) - -## [0.32.16](https://github.com/anycli/cli/compare/8e8b9a79f0f93bf3a7e6104f6a619b4d24bb4d52...v0.32.16) (2018-02-02) +## [0.28.12](https://github.com/oclif/oclif/compare/v0.28.10...v0.28.12) (2018-01-30) ### Bug Fixes -* use yarn, not yarn install ([ff61a7f](https://github.com/anycli/cli/commit/ff61a7f)) +* add nyc to appveyor ([b0216f1](https://github.com/oclif/oclif/commit/b0216f1b244f70a4bdbde1ce1fca6ada36edef9f)) +* use new test format ([67fe975](https://github.com/oclif/oclif/commit/67fe975beaf5f96ccb66b5b8eb1a6ed505cc27fa)) - -## [0.32.15](https://github.com/anycli/cli/compare/a95f10cf176d975537cb1696c8ab8ddcd4b2efd3...v0.32.15) (2018-02-02) -### Bug Fixes +## [0.28.10](https://github.com/oclif/oclif/compare/v0.28.9...v0.28.10) (2018-01-30) -* fixed indentation ([0ee469a](https://github.com/anycli/cli/commit/0ee469a)) -* use strings instead of variable ([8e8b9a7](https://github.com/anycli/cli/commit/8e8b9a7)) - -## [0.32.14](https://github.com/anycli/cli/compare/f2d3b5d77719508cd3247e294efeeaee9def7fb6...v0.32.14) (2018-02-02) +### Bug Fixes +* only push eslint if it is not empty ([ef9a649](https://github.com/oclif/oclif/commit/ef9a649c070fe8271addfb41bd0ba5a774a8745b)) -### Bug Fixes -* add bin scripts to files ([a95f10c](https://github.com/anycli/cli/commit/a95f10c)) -* added bin script to pjson ([190cb30](https://github.com/anycli/cli/commit/190cb30)) - -## [0.32.13](https://github.com/anycli/cli/compare/8ba2b5f0b87683fb1d06a2a521afb69913a80129...v0.32.13) (2018-02-02) +## [0.28.9](https://github.com/oclif/oclif/compare/v0.28.8...v0.28.9) (2018-01-30) ### Bug Fixes -* improve experience when overwiting existing base ([f79dfef](https://github.com/anycli/cli/commit/f79dfef)) -* updated deps ([f2d3b5d](https://github.com/anycli/cli/commit/f2d3b5d)) -* use new plugins ([7c58310](https://github.com/anycli/cli/commit/7c58310)) +* fixed typescript output ([b3bde94](https://github.com/oclif/oclif/commit/b3bde9437d06c69b4bd2a9ef7206444020c80aea)) - -## [0.32.12](https://github.com/anycli/cli/compare/fc47d6447cfb798bd4892ae6cc42ae91ed2402c1...v0.32.12) (2018-02-02) -### Bug Fixes +## [0.28.8](https://github.com/oclif/oclif/compare/v0.28.7...v0.28.8) (2018-01-30) -* do not install dev deps on release ([8ba2b5f](https://github.com/anycli/cli/commit/8ba2b5f)) - -## [0.32.11](https://github.com/anycli/cli/compare/1384b55ba5218bded587c7bcb7ceeff41da69f1e...v0.32.11) (2018-02-02) +### Bug Fixes +* add nyc config ([73b448b](https://github.com/oclif/oclif/commit/73b448b21887b61367c36fa0e11be2f81fb713d2)) -### Bug Fixes -* consolidate circle jobs ([d72884d](https://github.com/anycli/cli/commit/d72884d)) -* consolidate circle jobs ([9f3c2f2](https://github.com/anycli/cli/commit/9f3c2f2)) - -## [0.32.10](https://github.com/anycli/cli/compare/43335e983141cb2c2379579d6b7f673a94d6cdf5...v0.32.10) (2018-02-02) +## [0.28.7](https://github.com/oclif/oclif/compare/v0.28.6...v0.28.7) (2018-01-30) ### Bug Fixes -* use name in concurrently ([1384b55](https://github.com/anycli/cli/commit/1384b55)) +* add nyc config ([21f25d0](https://github.com/oclif/oclif/commit/21f25d0e1f56b6572cc2851f75cb295564979377)) +* semantic-release bin ([813d91b](https://github.com/oclif/oclif/commit/813d91b455247c581c6ee3e8d53018bcd6152db6)) - -## [0.32.9](https://github.com/anycli/cli/compare/a7e0d141cf5a65a9faf202998a5c53c32fcb695c...v0.32.9) (2018-02-02) -### Bug Fixes +## [0.28.6](https://github.com/oclif/oclif/compare/v0.28.5...v0.28.6) (2018-01-30) -* fixed yarn mutex ([43335e9](https://github.com/anycli/cli/commit/43335e9)) - -## [0.32.8](https://github.com/anycli/cli/compare/daa43ead11cd86d0d73cc8b999bc4658864c01c0...v0.32.8) (2018-02-02) +### Bug Fixes +* reduce dependencies needed in dev ([2a0bbad](https://github.com/oclif/oclif/commit/2a0bbad60b773bd0cef93c596428e0d3403e9c5c)) +* semantic-release bin ([2fcef58](https://github.com/oclif/oclif/commit/2fcef58bfab09e2901374ed2c5bcd76f3c06f92e)) +* semantic-release bin ([ba77257](https://github.com/oclif/oclif/commit/ba77257bf55971d6b645e08c0fbe557d3b18ec66)) +* semantic-release bin ([6addee5](https://github.com/oclif/oclif/commit/6addee5447d750ace0e83bc9225c46b9416f956b)) -### Bug Fixes -* add another retry ([6dfe207](https://github.com/anycli/cli/commit/6dfe207)) -* add another workflow for caching ([5fe5d11](https://github.com/anycli/cli/commit/5fe5d11)) -* cache after release ([a7e0d14](https://github.com/anycli/cli/commit/a7e0d14)) - -## [0.32.7](https://github.com/anycli/cli/compare/85b56406a591cde36f9586fbac671850d7b80848...v0.32.7) (2018-02-02) +## [0.28.5](https://github.com/oclif/oclif/compare/v0.28.4...v0.28.5) (2018-01-29) ### Bug Fixes -* add mutex so tests can run in parallel ([b03b605](https://github.com/anycli/cli/commit/b03b605)) -* attach workspace when releasing ([daa43ea](https://github.com/anycli/cli/commit/daa43ea)) +* add semantic-release locally instead ([c8bc421](https://github.com/oclif/oclif/commit/c8bc4211b69286ec638f6fd53d2f97671069f1b7)) +* dev dep ([46dd0a3](https://github.com/oclif/oclif/commit/46dd0a312345b951713ebb5ef14c538dd4aaa3e8)) - -## [0.32.6](https://github.com/anycli/cli/compare/dd9da5f0c60bca1c06ed4ebd7edfecce6643356a...v0.32.6) (2018-02-02) -### Bug Fixes +## [0.28.4](https://github.com/oclif/oclif/compare/v0.28.2...v0.28.4) (2018-01-29) -* circle cache improvements ([7e9c3d0](https://github.com/anycli/cli/commit/7e9c3d0)) -* fixed plugin circle config ([85b5640](https://github.com/anycli/cli/commit/85b5640)) - -## [0.32.5](https://github.com/anycli/cli/compare/20de5dcd2abf943b2d5004d1027c09208b910c3d...v0.32.5) (2018-02-02) +### Bug Fixes +* add commitlint ([f60d9f2](https://github.com/oclif/oclif/commit/f60d9f2cb363ca0788b036b47a01cec67cb9aa4d)) +* semantic-release bin ([8183ae5](https://github.com/oclif/oclif/commit/8183ae5f69e6614981fcd3760b6993bccc8de40a)) -### Bug Fixes -* fixed global add ([6e5fb0e](https://github.com/anycli/cli/commit/6e5fb0e)) -* move setup_git into greenkeeper ([b6c87d9](https://github.com/anycli/cli/commit/b6c87d9)) - -## [0.32.4](https://github.com/anycli/cli/compare/47f9b65b3f6ac03e687a7063ad51bcb905f9edf2...v0.32.4) (2018-02-02) +## [0.28.2](https://github.com/oclif/oclif/compare/v0.28.1...v0.28.2) (2018-01-29) ### Bug Fixes -* fixed restore cache step ([20de5dc](https://github.com/anycli/cli/commit/20de5dc)) +* fetch semantic release when needed ([db289ca](https://github.com/oclif/oclif/commit/db289cad501e0701d61fff5a3460b328dc04a9c1)) +* fetch semantic release when needed ([7340723](https://github.com/oclif/oclif/commit/734072349121156886f021d5982a4c6e1c19b49c)) - -## [0.32.3](https://github.com/anycli/cli/compare/de0ad4e688db399401aef571acdd2990d5e0ae77...v0.32.3) (2018-02-01) -### Bug Fixes +## [0.28.1](https://github.com/oclif/oclif/compare/v0.28.0...v0.28.1) (2018-01-29) -* fixed yarn step in circle config ([8bdadc3](https://github.com/anycli/cli/commit/8bdadc3)) -* fixed yarn step in circle config ([e6e19c4](https://github.com/anycli/cli/commit/e6e19c4)) - -## [0.32.1](https://github.com/anycli/cli/compare/3efa4c533d1fc76ec4f737132eb60ea7322fe9d3...v0.32.1) (2018-02-01) +### Bug Fixes +* explicitly add @dxcli/nyc-config ([9944ead](https://github.com/oclif/oclif/commit/9944eaddcd40b9a8fc523306736b67b2e038909c)) -### Bug Fixes -* fixed circle config ([9a8166e](https://github.com/anycli/cli/commit/9a8166e)) - -# [0.32.0](https://github.com/anycli/cli/compare/2fbd4f9f2e3c06f8a8092b2cd3e759759784d4a1...v0.32.0) (2018-02-01) +# [0.28.0](https://github.com/oclif/oclif/compare/v0.27.1...v0.28.0) (2018-01-28) ### Bug Fixes -* do not set anycli if empty ([3c7bab9](https://github.com/anycli/cli/commit/3c7bab9)) +* add TS parsing for commands ([68c2023](https://github.com/oclif/oclif/commit/68c2023b5475bf1fa1fb99738b4c8a391f37f953)) +* bump cli-ux ([adf7aad](https://github.com/oclif/oclif/commit/adf7aad16e7a6185c89b2c81185401e45a7351e0)) +* bump cli-ux ([f4f0f3f](https://github.com/oclif/oclif/commit/f4f0f3ff96f497b0d906c537de50126cce99a145)) +* fixing single and adding windows cmd scripts ([3659d86](https://github.com/oclif/oclif/commit/3659d8652208e48b4bd5cf3bb9a67ee8f2c5aca6)) +* improve TS loading ([8d42d1e](https://github.com/oclif/oclif/commit/8d42d1e6917d71b9c53359df6fb050c3d9103b21)) +* simplified bin scripts ([8b36b61](https://github.com/oclif/oclif/commit/8b36b615cd0c96adc92e8f6dc4765f5dac5c2778)) +* updated deps ([c6e576a](https://github.com/oclif/oclif/commit/c6e576ab96798c1763787faf87819cb1961f9108)) ### Features -* add cache step to circleci ([3efa4c5](https://github.com/anycli/cli/commit/3efa4c5)) -* add cache step to circleci ([fcef9fa](https://github.com/anycli/cli/commit/fcef9fa)) +* add mocha script ([4efb9ab](https://github.com/oclif/oclif/commit/4efb9abafb1204fcadd14cbb0415a3151254914f)) +* added command generator ([f6fef1f](https://github.com/oclif/oclif/commit/f6fef1f4151078b4e5af985c70bc5c5d11ccf79c)) - -## [0.31.1](https://github.com/anycli/cli/compare/ec2886542814433b5fa2942efbd0b98a8ea48ace...v0.31.1) (2018-02-01) -### Bug Fixes +## [0.27.1](https://github.com/oclif/oclif/compare/v0.27.0...v0.27.1) (2018-01-28) -* rename repo ([37ca4cc](https://github.com/anycli/cli/commit/37ca4cc)) -* use new linter rules ([2fbd4f9](https://github.com/anycli/cli/commit/2fbd4f9)) - -# [0.31.0](https://github.com/anycli/anycli/compare/e324c141548c6c025271fa0a4da721de670a60a7...v0.31.0) (2018-02-01) +### Bug Fixes +* unescape commit message ([86c4556](https://github.com/oclif/oclif/commit/86c4556489bd3677f7f49a78ab85e692c8d0bc73)) -### Features -* rename package to [@anycli](https://github.com/anycli)/cli ([ec28865](https://github.com/anycli/anycli/commit/ec28865)) - -## [0.30.7](https://github.com/anycli/anycli/compare/8257b7a1b19e0a6c907b962ed11e4df735856062...v0.30.7) (2018-02-01) +# [0.27.0](https://github.com/oclif/oclif/compare/v0.26.11...v0.27.0) (2018-01-28) ### Bug Fixes -* smoke tests first ([e324c14](https://github.com/anycli/anycli/commit/e324c14)) +* delete all files from existing example ([0081edd](https://github.com/oclif/oclif/commit/0081eddf15239402eb72b11892ff266c793e82c5)) +* fixed directory in release script ([a4550b7](https://github.com/oclif/oclif/commit/a4550b73c93219c13222118e7c31a8d69851b9cb)) +* fixing example publishing ([a333610](https://github.com/oclif/oclif/commit/a333610c4fb7045aff03726df52b42670099eba9)) +* ignore kebab case on package-scripts ([e3ca364](https://github.com/oclif/oclif/commit/e3ca364468ce04755abca6dfa160557ae6af8c0e)) + - -## [0.30.6](https://github.com/anycli/anycli/compare/ad3544b65ff6246708646393eaf7ce036b737898...v0.30.6) (2018-02-01) +### Features +* make examples follow version of create-dxcli ([de2b9fc](https://github.com/oclif/oclif/commit/de2b9fc10ba143e1e5de4e3f90b99f5d36259ce6)) -### Bug Fixes -* add smoke tests to appveyor ([f33a88d](https://github.com/anycli/anycli/commit/f33a88d)) -* fix nyc on circle ([8257b7a](https://github.com/anycli/anycli/commit/8257b7a)) - -## [0.30.4](https://github.com/anycli/anycli/compare/65d35c53097297d46163b4976a1f18cf53bfed38...v0.30.4) (2018-02-01) +## [0.26.11](https://github.com/oclif/oclif/compare/v0.26.10...v0.26.11) (2018-01-28) ### Bug Fixes -* added some smoke tests ([24664f1](https://github.com/anycli/anycli/commit/24664f1)) +* parser is now exported from command ([6f192b1](https://github.com/oclif/oclif/commit/6f192b1cf7b373e1008bf9512cc0860ed1c8d953)) - -## [0.30.3](https://github.com/anycli/anycli/compare/93b3f16c2ecd2f512f78c00f010fbc178bebcf6c...v0.30.3) (2018-02-01) -### Bug Fixes +## [0.26.10](https://github.com/oclif/oclif/compare/v0.26.9...v0.26.10) (2018-01-28) -* remove fromScratch ([65d35c5](https://github.com/anycli/anycli/commit/65d35c5)) - -## [0.30.2](https://github.com/anycli/anycli/compare/354f46b0486648b434bb66d72e7387325f3f9ff0...v0.30.2) (2018-02-01) +### Bug Fixes +* rename dev-test to test ([2a2bf9b](https://github.com/oclif/oclif/commit/2a2bf9b8919fb04da5ee172b9cb78d186c03837e)) +* run build before tests ([05765fa](https://github.com/oclif/oclif/commit/05765fa798b08a08963f3db5a35beeddd1ffb1cd)) +* run nps build before release ([0a289a1](https://github.com/oclif/oclif/commit/0a289a10ba1d162b296678aba732140938038534)) -### Bug Fixes -* fix commitlint ([9aa2212](https://github.com/anycli/anycli/commit/9aa2212)) -* fix yarn execs ([93b3f16](https://github.com/anycli/anycli/commit/93b3f16)) - -## [0.30.1](https://github.com/anycli/anycli/compare/1a728bb4cdb10c64b68cccadfbf17eb2ca6ec840...v0.30.1) (2018-02-01) +## [0.26.9](https://github.com/oclif/oclif/compare/v0.26.8...v0.26.9) (2018-01-28) ### Bug Fixes -* fixed linters ([5ac2d4c](https://github.com/anycli/anycli/commit/5ac2d4c)) -* fixed mocha in js ([dbc44bf](https://github.com/anycli/anycli/commit/dbc44bf)) -* fixed single bin script ([a8a4b33](https://github.com/anycli/anycli/commit/a8a4b33)) -* fixing single ([354f46b](https://github.com/anycli/anycli/commit/354f46b)) -* only use concurrently when needed ([bd567e1](https://github.com/anycli/anycli/commit/bd567e1)) +* overwrite scripts ([fc9bba9](https://github.com/oclif/oclif/commit/fc9bba9e38d40f726eb0b52af2635e6f91cc0412)) - -# [0.30.0](https://github.com/anycli/anycli/compare/b90320a5dd3ef9e5808995c38d7d16d86b32ea03...v0.30.0) (2018-02-01) +### Reverts -### Features +* Revert "fix: lower loglevel" ([8f6c71f](https://github.com/oclif/oclif/commit/8f6c71f4bfacf790d30f6bf60878daa416ad6c56)) -* added --help and --version ([07e5a96](https://github.com/anycli/anycli/commit/07e5a96)) - -# [0.29.0](https://github.com/anycli/anycli/compare/844ab18e55794c4b6ac36168e0648b1e8222044f...v0.29.0) (2018-02-01) +## [0.26.8](https://github.com/oclif/oclif/compare/v0.26.7...v0.26.8) (2018-01-28) -### Bug Fixes -* consolidate commands and tests ([b90320a](https://github.com/anycli/anycli/commit/b90320a)) -* fixed command generator ([8c5c179](https://github.com/anycli/anycli/commit/8c5c179)) +### Bug Fixes +* lower loglevel ([5286151](https://github.com/oclif/oclif/commit/528615137fba7d8637271a044617d55005aae769)) -### Features -* use new parser model ([7e7f7d3](https://github.com/anycli/anycli/commit/7e7f7d3)) - -## [0.28.16](https://github.com/dxcli/create-dxcli/compare/314398bb37631a1eefafb9a60ffbbac5d0594db0...v0.28.16) (2018-01-30) +## [0.26.7](https://github.com/oclif/oclif/compare/v0.26.6...v0.26.7) (2018-01-28) ### Bug Fixes -* only sort if array ([6557c82](https://github.com/dxcli/create-dxcli/commit/6557c82)) +* send args to yarn ([3d851ba](https://github.com/oclif/oclif/commit/3d851bad9ce5223acd0f8cf38b8ac60d290e565d)) - -## [0.28.15](https://github.com/dxcli/create-dxcli/compare/b7292967965fc9c1b8135930d6edb421bf4b4d1f...v0.28.15) (2018-01-30) -### Bug Fixes +## [0.26.6](https://github.com/oclif/oclif/compare/v0.26.5...v0.26.6) (2018-01-28) -* slight performance boost in appveyor ([314398b](https://github.com/dxcli/create-dxcli/commit/314398b)) - -## [0.28.12](https://github.com/dxcli/create-dxcli/compare/67fe975beaf5f96ccb66b5b8eb1a6ed505cc27fa...v0.28.12) (2018-01-30) +### Bug Fixes +* ensure /lib is always gitignored for ts ([07c7e38](https://github.com/oclif/oclif/commit/07c7e38f5bc38e72c78975a441ec9ea51608b4ed)) -### Bug Fixes -* add nyc to appveyor ([b0216f1](https://github.com/dxcli/create-dxcli/commit/b0216f1)) - -## [0.28.10](https://github.com/dxcli/create-dxcli/compare/b3bde9437d06c69b4bd2a9ef7206444020c80aea...v0.28.10) (2018-01-30) +## [0.26.5](https://github.com/oclif/oclif/compare/v0.26.3...v0.26.5) (2018-01-28) ### Bug Fixes -* only push eslint if it is not empty ([ef9a649](https://github.com/dxcli/create-dxcli/commit/ef9a649)) +* add dev deps for single ([efc07dc](https://github.com/oclif/oclif/commit/efc07dca3aaae0d28ba4d6b501f882db2950e2bb)) +* add mocha-junit-reporter ([a1a4a08](https://github.com/oclif/oclif/commit/a1a4a082b225ad1b94b3705bcd84f71ef692368d)) +* add peerDependencies ([7be5fd1](https://github.com/oclif/oclif/commit/7be5fd16050c9bce4755ac7adf23a2e4269f7f5b)) +* fixed references to deps ([353cac2](https://github.com/oclif/oclif/commit/353cac2ad9c306885e31c3b90948f798ebea2bea)) +* only build on release ([dba0a63](https://github.com/oclif/oclif/commit/dba0a631286fb9abb3f3b6f86c92f85c9ce65d1d)) +* only build on release ([0f5e7db](https://github.com/oclif/oclif/commit/0f5e7dbc9c7c40638d41a9c1e0ffbb7971bf1f4a)) +* only build on release ([fecec26](https://github.com/oclif/oclif/commit/fecec26d2fd2150c853297469b8446bc141f0760)) +* release example plugins ([4500eed](https://github.com/oclif/oclif/commit/4500eed85daaa3f52971c3161a748e913567b00e)) +* rename dev packages ([e85a5cf](https://github.com/oclif/oclif/commit/e85a5cfc68fde3a16e10a1cd7d2ab0a920a121d6)) +* tests should use chai ([16fdb7b](https://github.com/oclif/oclif/commit/16fdb7b444c0e84d4f108db0e7117af14984b493)) +* use tmp dir on CI ([c98a8e4](https://github.com/oclif/oclif/commit/c98a8e40789bc9c853d5c067925058cf15d33cf0)) - -## [0.28.9](https://github.com/dxcli/create-dxcli/compare/73b448b21887b61367c36fa0e11be2f81fb713d2...v0.28.9) (2018-01-30) +### Reverts + +* Revert "test: run in series" ([8fc077d](https://github.com/oclif/oclif/commit/8fc077dea7c0dd18b4e22b050a2b5708637bdd1a)) -### Bug Fixes -* fixed typescript output ([b3bde94](https://github.com/dxcli/create-dxcli/commit/b3bde94)) - -## [0.28.8](https://github.com/dxcli/create-dxcli/compare/21f25d0e1f56b6572cc2851f75cb295564979377...v0.28.8) (2018-01-30) +## [0.26.3](https://github.com/oclif/oclif/compare/v0.26.2...v0.26.3) (2018-01-28) ### Bug Fixes -* add nyc config ([73b448b](https://github.com/dxcli/create-dxcli/commit/73b448b)) +* add semantic-release step if not mocha ([143532c](https://github.com/oclif/oclif/commit/143532cbea80d4f7fc697f9178773f17073643a2)) - -## [0.28.7](https://github.com/dxcli/create-dxcli/compare/2fcef58bfab09e2901374ed2c5bcd76f3c06f92e...v0.28.7) (2018-01-30) -### Bug Fixes +## [0.26.2](https://github.com/oclif/oclif/compare/v0.26.1...v0.26.2) (2018-01-28) -* add nyc config ([21f25d0](https://github.com/dxcli/create-dxcli/commit/21f25d0)) -* semantic-release bin ([813d91b](https://github.com/dxcli/create-dxcli/commit/813d91b)) - -## [0.28.6](https://github.com/dxcli/create-dxcli/compare/46dd0a312345b951713ebb5ef14c538dd4aaa3e8...v0.28.6) (2018-01-30) +### Bug Fixes +* add @dxcli/dev-semantic-release ([ff9c542](https://github.com/oclif/oclif/commit/ff9c542edabdddafc3d011841b26d949f0dd3275)) -### Bug Fixes -* reduce dependencies needed in dev ([2a0bbad](https://github.com/dxcli/create-dxcli/commit/2a0bbad)) -* semantic-release bin ([2fcef58](https://github.com/dxcli/create-dxcli/commit/2fcef58)) -* semantic-release bin ([ba77257](https://github.com/dxcli/create-dxcli/commit/ba77257)) -* semantic-release bin ([6addee5](https://github.com/dxcli/create-dxcli/commit/6addee5)) - -## [0.28.5](https://github.com/dxcli/create-dxcli/compare/8183ae5f69e6614981fcd3760b6993bccc8de40a...v0.28.5) (2018-01-29) +## [0.26.1](https://github.com/oclif/oclif/compare/v0.26.0...v0.26.1) (2018-01-28) ### Bug Fixes -* add semantic-release locally instead ([c8bc421](https://github.com/dxcli/create-dxcli/commit/c8bc421)) -* dev dep ([46dd0a3](https://github.com/dxcli/create-dxcli/commit/46dd0a3)) +* add dev deps ([98ea830](https://github.com/oclif/oclif/commit/98ea830cd9edbfabac3453ce41fb2ba2bd145de7)) + - -## [0.28.4](https://github.com/dxcli/create-dxcli/compare/f60d9f2cb363ca0788b036b47a01cec67cb9aa4d...v0.28.4) (2018-01-29) + +# [0.26.0](https://github.com/oclif/oclif/compare/v0.25.2...v0.26.0) (2018-01-27) ### Bug Fixes -* semantic-release bin ([8183ae5](https://github.com/dxcli/create-dxcli/commit/8183ae5)) +* mkdir ([09d86ae](https://github.com/oclif/oclif/commit/09d86ae8807399db4ccb1680fc61533ca0ba6ef3)) +* mkdir ([dc8a2d1](https://github.com/oclif/oclif/commit/dc8a2d132d32f9b4a6617227de45eb82dd0694af)) +* updated deps ([9c5e204](https://github.com/oclif/oclif/commit/9c5e20478e77703ac148281ca7ea6cd5f12fd94e)) + - -## [0.28.2](https://github.com/dxcli/create-dxcli/compare/9944eaddcd40b9a8fc523306736b67b2e038909c...v0.28.2) (2018-01-29) +### Features +* add bin script for local plugin dev ([552df43](https://github.com/oclif/oclif/commit/552df43e55f658392e6dddd2bac5b8e0df4a9799)) -### Bug Fixes -* fetch semantic release when needed ([db289ca](https://github.com/dxcli/create-dxcli/commit/db289ca)) -* fetch semantic release when needed ([7340723](https://github.com/dxcli/create-dxcli/commit/7340723)) - -## [0.28.1](https://github.com/dxcli/create-dxcli/compare/8b36b615cd0c96adc92e8f6dc4765f5dac5c2778...v0.28.1) (2018-01-29) +## [0.25.2](https://github.com/oclif/oclif/compare/v0.25.1...v0.25.2) (2018-01-27) ### Bug Fixes -* explicitly add [@dxcli](https://github.com/dxcli)/nyc-config ([9944ead](https://github.com/dxcli/create-dxcli/commit/9944ead)) +* updated deps ([7d6f276](https://github.com/oclif/oclif/commit/7d6f27655c4fd780b53a50598ae2d0450360368f)) - -# [0.28.0](https://github.com/dxcli/create-dxcli/compare/v0.27.1...v0.28.0) (2018-01-28) + + +## [0.25.1](https://github.com/oclif/oclif/compare/v0.24.3...v0.25.1) (2018-01-27) ### Bug Fixes -* add TS parsing for commands ([68c2023](https://github.com/dxcli/create-dxcli/commit/68c2023)) -* bump cli-ux ([adf7aad](https://github.com/dxcli/create-dxcli/commit/adf7aad)) -* bump cli-ux ([f4f0f3f](https://github.com/dxcli/create-dxcli/commit/f4f0f3f)) -* fixing single and adding windows cmd scripts ([3659d86](https://github.com/dxcli/create-dxcli/commit/3659d86)) -* improve TS loading ([8d42d1e](https://github.com/dxcli/create-dxcli/commit/8d42d1e)) -* simplified bin scripts ([8b36b61](https://github.com/dxcli/create-dxcli/commit/8b36b61)) -* updated deps ([c6e576a](https://github.com/dxcli/create-dxcli/commit/c6e576a)) +* fixed issues with package-scripts ([571facb](https://github.com/oclif/oclif/commit/571facb3faac5dcac4d2d972c4799020c38ef764)) +* mkdirp reports ([ab4b02f](https://github.com/oclif/oclif/commit/ab4b02f03b67cd987b66a201c72019d2abd98b3b)) ### Features -* add mocha script ([4efb9ab](https://github.com/dxcli/create-dxcli/commit/4efb9ab)) -* added command generator ([f6fef1f](https://github.com/dxcli/create-dxcli/commit/f6fef1f)) +* simplified package-scripts ([f31fae9](https://github.com/oclif/oclif/commit/f31fae9ff6e85dddf8036d53c41bdffcfa6ae350)) - -## [0.26.11](https://github.com/dxcli/create-dxcli/compare/0a289a10ba1d162b296678aba732140938038534...v0.26.11) (2018-01-28) -### Bug Fixes +## [0.24.3](https://github.com/oclif/oclif/compare/v0.24.2...v0.24.3) (2018-01-27) -* parser is now exported from command ([6f192b1](https://github.com/dxcli/create-dxcli/commit/6f192b1)) - -## [0.26.10](https://github.com/dxcli/create-dxcli/compare/fc9bba9e38d40f726eb0b52af2635e6f91cc0412...v0.26.10) (2018-01-28) +### Bug Fixes +* scope templates ([2f03b43](https://github.com/oclif/oclif/commit/2f03b43221b11bb8add131a9e65c8533379cceac)) +* trap git push errors ([af327b3](https://github.com/oclif/oclif/commit/af327b3e8f2f01afd38692f3ae175348024daa11)) -### Bug Fixes -* rename dev-test to test ([2a2bf9b](https://github.com/dxcli/create-dxcli/commit/2a2bf9b)) -* run build before tests ([05765fa](https://github.com/dxcli/create-dxcli/commit/05765fa)) -* run nps build before release ([0a289a1](https://github.com/dxcli/create-dxcli/commit/0a289a1)) - -## [0.26.9](https://github.com/dxcli/create-dxcli/compare/528615137fba7d8637271a044617d55005aae769...v0.26.9) (2018-01-28) +## [0.24.2](https://github.com/oclif/oclif/compare/v0.24.1...v0.24.2) (2018-01-27) ### Bug Fixes -* overwrite scripts ([fc9bba9](https://github.com/dxcli/create-dxcli/commit/fc9bba9)) +* releases ([fbdc9c2](https://github.com/oclif/oclif/commit/fbdc9c253f8710ee3c8ab032d3c9c91113ab4823)) +* releases ([ba33440](https://github.com/oclif/oclif/commit/ba3344048c2cb510f9d81d1fbd9b5a69571dfe43)) + - -## [0.26.8](https://github.com/dxcli/create-dxcli/compare/3d851bad9ce5223acd0f8cf38b8ac60d290e565d...v0.26.8) (2018-01-28) + +## [0.24.1](https://github.com/oclif/oclif/compare/v0.24.0...v0.24.1) (2018-01-27) ### Bug Fixes -* lower loglevel ([5286151](https://github.com/dxcli/create-dxcli/commit/5286151)) +* fix releases ([435a96d](https://github.com/oclif/oclif/commit/435a96d0d6f426601d022c99e01d1ed1b50e8a39)) +* fixing example publishing ([6087f9c](https://github.com/oclif/oclif/commit/6087f9cebde26ea68420c3c362c385e78e2ad706)) +* fixing example publishing ([d03efe7](https://github.com/oclif/oclif/commit/d03efe752cd1b789bf9974a592b13bab16c6a600)) +* git username ([11b4b58](https://github.com/oclif/oclif/commit/11b4b5868f1f5063d62fd5a8db9b434f8857e4c5)) +* release examples ([6a1c3df](https://github.com/oclif/oclif/commit/6a1c3df746a3afd3778ea8f2a4f190fd5e4df8e4)) +* rename greenkeeper -> yarn ([78afe96](https://github.com/oclif/oclif/commit/78afe967268a10015a7a450c4b4ed0001cb1f9f8)) +* share cache in tests ([1a33371](https://github.com/oclif/oclif/commit/1a33371233b95c087e80cc8db249b48edbc61663)) - -## [0.26.7](https://github.com/dxcli/create-dxcli/compare/07c7e38f5bc38e72c78975a441ec9ea51608b4ed...v0.26.7) (2018-01-28) -### Bug Fixes +# [0.24.0](https://github.com/oclif/oclif/compare/v0.23.3...v0.24.0) (2018-01-27) -* send args to yarn ([3d851ba](https://github.com/dxcli/create-dxcli/commit/3d851ba)) - -## [0.26.6](https://github.com/dxcli/create-dxcli/compare/a1a4a082b225ad1b94b3705bcd84f71ef692368d...v0.26.6) (2018-01-28) +### Features +* release examples ([2f901ca](https://github.com/oclif/oclif/commit/2f901ca9651edc92a3586bf3a7a86ddf21749a6f)) +* release examples automatically ([6c95bd9](https://github.com/oclif/oclif/commit/6c95bd9fb838b78762e8b8fc0d88d82dc84388bd)) -### Bug Fixes -* ensure /lib is always gitignored for ts ([07c7e38](https://github.com/dxcli/create-dxcli/commit/07c7e38)) - -## [0.26.5](https://github.com/dxcli/create-dxcli/compare/efd2846e5c3ac9e356baac4d2bf32b88c1ba0e53...v0.26.5) (2018-01-28) +## [0.23.3](https://github.com/oclif/oclif/compare/v0.23.2...v0.23.3) (2018-01-27) ### Bug Fixes -* add mocha-junit-reporter ([a1a4a08](https://github.com/dxcli/create-dxcli/commit/a1a4a08)) +* add templates to pack ([ea06630](https://github.com/oclif/oclif/commit/ea066302ac109a86d4186460803eb152a87edb56)) +* default to not having options ([72dd9d9](https://github.com/oclif/oclif/commit/72dd9d90826b213faa6efbc8e5ba003630b69097)) - -## [0.26.3](https://github.com/dxcli/create-dxcli/compare/ff9c542edabdddafc3d011841b26d949f0dd3275...v0.26.3) (2018-01-28) -### Bug Fixes +## [0.23.2](https://github.com/oclif/oclif/compare/v0.23.1...v0.23.2) (2018-01-27) -* add semantic-release step if not mocha ([143532c](https://github.com/dxcli/create-dxcli/commit/143532c)) - -## [0.26.2](https://github.com/dxcli/create-dxcli/compare/98ea830cd9edbfabac3453ce41fb2ba2bd145de7...v0.26.2) (2018-01-28) +### Bug Fixes +* export lib ([ad28e28](https://github.com/oclif/oclif/commit/ad28e28c93f1a8490992616b7a7db8755e582060)) -### Bug Fixes -* add [@dxcli](https://github.com/dxcli)/dev-semantic-release ([ff9c542](https://github.com/dxcli/create-dxcli/commit/ff9c542)) - -## [0.26.1](https://github.com/dxcli/create-dxcli/compare/9c5e20478e77703ac148281ca7ea6cd5f12fd94e...v0.26.1) (2018-01-28) +## [0.23.1](https://github.com/oclif/oclif/compare/v0.23.0...v0.23.1) (2018-01-27) ### Bug Fixes -* add dev deps ([98ea830](https://github.com/dxcli/create-dxcli/commit/98ea830)) - - -# [0.26.0](https://github.com/dxcli/create-dxcli/compare/7d6f27655c4fd780b53a50598ae2d0450360368f...v0.26.0) (2018-01-27) +* add other commands ([394b5f0](https://github.com/oclif/oclif/commit/394b5f0d7b5a3bb163fdcec45eadf7e3abcae17c)) +* move generator into this package ([d379e63](https://github.com/oclif/oclif/commit/d379e6321422dcb75e73e019a845920792820c02)) -### Bug Fixes -* mkdir ([09d86ae](https://github.com/dxcli/create-dxcli/commit/09d86ae)) -* mkdir ([dc8a2d1](https://github.com/dxcli/create-dxcli/commit/dc8a2d1)) -* updated deps ([9c5e204](https://github.com/dxcli/create-dxcli/commit/9c5e204)) +# [0.23.0](https://github.com/oclif/oclif/compare/v0.22.0...v0.23.0) (2018-01-26) ### Features -* add bin script for local plugin dev ([552df43](https://github.com/dxcli/create-dxcli/commit/552df43)) +* generator-dxcli@1.15.3 ([338f439](https://github.com/oclif/oclif/commit/338f439af784605470b85f2872554bc992396b54)) - -## [0.25.2](https://github.com/dxcli/create-dxcli/compare/ab4b02f03b67cd987b66a201c72019d2abd98b3b...v0.25.2) (2018-01-27) -### Bug Fixes +# [0.22.0](https://github.com/oclif/oclif/compare/v0.21.0...v0.22.0) (2018-01-25) -* updated deps ([7d6f276](https://github.com/dxcli/create-dxcli/commit/7d6f276)) - -## [0.25.1](https://github.com/dxcli/create-dxcli/compare/18261a5471c70b44acddb5859a66f0b3b7b4fcb9...v0.25.1) (2018-01-27) +### Features +* generator-dxcli@1.15.2 ([8b1d993](https://github.com/oclif/oclif/commit/8b1d9939d3debbd0eb51e6880a8f34184c682d8a)) -### Bug Fixes -* mkdirp reports ([ab4b02f](https://github.com/dxcli/create-dxcli/commit/ab4b02f)) - -## [0.24.3](https://github.com/dxcli/create-dxcli/compare/26f6d3019d357895bf3040e49702c728cd4297ad...v0.24.3) (2018-01-27) +# [0.21.0](https://github.com/oclif/oclif/compare/v0.20.0...v0.21.0) (2018-01-25) -### Bug Fixes +### Features -* scope templates ([2f03b43](https://github.com/dxcli/create-dxcli/commit/2f03b43)) -* trap git push errors ([af327b3](https://github.com/dxcli/create-dxcli/commit/af327b3)) +* generator-dxcli@1.15.0 ([fdd7270](https://github.com/oclif/oclif/commit/fdd72705de7cca981ea6a49037933352edc60b92)) - -## [0.24.2](https://github.com/dxcli/create-dxcli/compare/7bd67f810ec3af751aeb8b6b6b84ddb35aa28949...v0.24.2) (2018-01-27) -### Bug Fixes +# [0.20.0](https://github.com/oclif/oclif/compare/v0.19.0...v0.20.0) (2018-01-20) -* releases ([fbdc9c2](https://github.com/dxcli/create-dxcli/commit/fbdc9c2)) -* releases ([ba33440](https://github.com/dxcli/create-dxcli/commit/ba33440)) - -## [0.24.1](https://github.com/dxcli/create-dxcli/compare/2f901ca9651edc92a3586bf3a7a86ddf21749a6f...v0.24.1) (2018-01-27) +### Features +* generator-dxcli@1.14.4 ([d2a61f9](https://github.com/oclif/oclif/commit/d2a61f9afe10ca26e3e0a9c484649d339e750f05)) -### Bug Fixes -* fix releases ([435a96d](https://github.com/dxcli/create-dxcli/commit/435a96d)) -* fixing example publishing ([6087f9c](https://github.com/dxcli/create-dxcli/commit/6087f9c)) -* fixing example publishing ([d03efe7](https://github.com/dxcli/create-dxcli/commit/d03efe7)) -* git username ([11b4b58](https://github.com/dxcli/create-dxcli/commit/11b4b58)) -* release examples ([6a1c3df](https://github.com/dxcli/create-dxcli/commit/6a1c3df)) -* rename greenkeeper -> yarn ([78afe96](https://github.com/dxcli/create-dxcli/commit/78afe96)) -* share cache in tests ([1a33371](https://github.com/dxcli/create-dxcli/commit/1a33371)) - -# [0.24.0](https://github.com/dxcli/create-dxcli/compare/ea066302ac109a86d4186460803eb152a87edb56...v0.24.0) (2018-01-27) +# [0.19.0](https://github.com/oclif/oclif/compare/v0.18.0...v0.19.0) (2018-01-20) ### Features -* release examples ([2f901ca](https://github.com/dxcli/create-dxcli/commit/2f901ca)) -* release examples automatically ([6c95bd9](https://github.com/dxcli/create-dxcli/commit/6c95bd9)) +* generator-dxcli@1.14.3 ([b1b8ac3](https://github.com/oclif/oclif/commit/b1b8ac32b04f233448f290907146c8c006ccc305)) - -## [0.23.3](https://github.com/dxcli/create-dxcli/compare/ad28e28c93f1a8490992616b7a7db8755e582060...v0.23.3) (2018-01-27) -### Bug Fixes +# [0.18.0](https://github.com/oclif/oclif/compare/v0.17.0...v0.18.0) (2018-01-20) -* add templates to pack ([ea06630](https://github.com/dxcli/create-dxcli/commit/ea06630)) -* default to not having options ([72dd9d9](https://github.com/dxcli/create-dxcli/commit/72dd9d9)) - -## [0.23.2](https://github.com/dxcli/create-dxcli/compare/417c8753c63422e93e7c59368274483be27b8a9b...v0.23.2) (2018-01-27) +### Features +* generator-dxcli@1.14.2 ([e6c0d87](https://github.com/oclif/oclif/commit/e6c0d871b4734bac89036368841fd08e57c2391d)) -### Bug Fixes -* export lib ([ad28e28](https://github.com/dxcli/create-dxcli/commit/ad28e28)) - -## [0.23.1](https://github.com/dxcli/create-dxcli/compare/338f439af784605470b85f2872554bc992396b54...v0.23.1) (2018-01-27) +# [0.17.0](https://github.com/oclif/oclif/compare/v0.16.0...v0.17.0) (2018-01-20) -### Bug Fixes +### Features -* add other commands ([394b5f0](https://github.com/dxcli/create-dxcli/commit/394b5f0)) -* move generator into this package ([d379e63](https://github.com/dxcli/create-dxcli/commit/d379e63)) +* generator-dxcli@1.14.1 ([a29e7a1](https://github.com/oclif/oclif/commit/a29e7a15a8e9ab452b7abca6137a740848d29167)) - -# [0.23.0](https://github.com/dxcli/create-dxcli/compare/8b1d9939d3debbd0eb51e6880a8f34184c682d8a...v0.23.0) (2018-01-26) -### Features +# [0.16.0](https://github.com/oclif/oclif/compare/v0.15.0...v0.16.0) (2018-01-20) -* generator-dxcli@1.15.3 ([338f439](https://github.com/dxcli/create-dxcli/commit/338f439)) - -# [0.22.0](https://github.com/dxcli/create-dxcli/compare/fdd72705de7cca981ea6a49037933352edc60b92...v0.22.0) (2018-01-25) +### Features +* generator-dxcli@1.14.0 ([792ba5a](https://github.com/oclif/oclif/commit/792ba5adece9587f32437e8ec4aa7a211c7746bb)) -### Features -* generator-dxcli@1.15.2 ([8b1d993](https://github.com/dxcli/create-dxcli/commit/8b1d993)) - -# [0.21.0](https://github.com/dxcli/create-dxcli/compare/d2a61f9afe10ca26e3e0a9c484649d339e750f05...v0.21.0) (2018-01-25) +# [0.15.0](https://github.com/oclif/oclif/compare/v0.14.0...v0.15.0) (2018-01-19) ### Features -* generator-dxcli@1.15.0 ([fdd7270](https://github.com/dxcli/create-dxcli/commit/fdd7270)) +* generator-dxcli@1.13.0 ([0240fe8](https://github.com/oclif/oclif/commit/0240fe8c894bd156235d1a03317e629843c49106)) - -# [0.20.0](https://github.com/dxcli/create-dxcli/compare/b1b8ac32b04f233448f290907146c8c006ccc305...v0.20.0) (2018-01-20) -### Features +# [0.14.0](https://github.com/oclif/oclif/compare/v0.13.0...v0.14.0) (2018-01-19) -* generator-dxcli@1.14.4 ([d2a61f9](https://github.com/dxcli/create-dxcli/commit/d2a61f9)) - -# [0.19.0](https://github.com/dxcli/create-dxcli/compare/e6c0d871b4734bac89036368841fd08e57c2391d...v0.19.0) (2018-01-20) +### Features +* generator-dxcli@1.12.3 ([b7bcf58](https://github.com/oclif/oclif/commit/b7bcf58f8611f30d7589c24445a96bfb583c14a6)) -### Features -* generator-dxcli@1.14.3 ([b1b8ac3](https://github.com/dxcli/create-dxcli/commit/b1b8ac3)) - -# [0.18.0](https://github.com/dxcli/create-dxcli/compare/a29e7a15a8e9ab452b7abca6137a740848d29167...v0.18.0) (2018-01-20) +# [0.13.0](https://github.com/oclif/oclif/compare/v0.12.0...v0.13.0) (2018-01-19) ### Features -* generator-dxcli@1.14.2 ([e6c0d87](https://github.com/dxcli/create-dxcli/commit/e6c0d87)) +* generator-dxcli@1.12.2 ([3665a3e](https://github.com/oclif/oclif/commit/3665a3e7d6818a052a302f3f679ffbcb2254cc53)) - -# [0.17.0](https://github.com/dxcli/create-dxcli/compare/792ba5adece9587f32437e8ec4aa7a211c7746bb...v0.17.0) (2018-01-20) -### Features +# [0.12.0](https://github.com/oclif/oclif/compare/v0.11.0...v0.12.0) (2018-01-19) -* generator-dxcli@1.14.1 ([a29e7a1](https://github.com/dxcli/create-dxcli/commit/a29e7a1)) - -# [0.16.0](https://github.com/dxcli/create-dxcli/compare/0240fe8c894bd156235d1a03317e629843c49106...v0.16.0) (2018-01-20) +### Features +* generator-dxcli@1.12.1 ([87c3b50](https://github.com/oclif/oclif/commit/87c3b5015710cf221fd2e72f79ac0bca62682b41)) -### Features -* generator-dxcli@1.14.0 ([792ba5a](https://github.com/dxcli/create-dxcli/commit/792ba5a)) - -# [0.15.0](https://github.com/dxcli/create-dxcli/compare/b7bcf58f8611f30d7589c24445a96bfb583c14a6...v0.15.0) (2018-01-19) +# [0.11.0](https://github.com/oclif/oclif/compare/v0.10.0...v0.11.0) (2018-01-19) ### Features -* generator-dxcli@1.13.0 ([0240fe8](https://github.com/dxcli/create-dxcli/commit/0240fe8)) +* generator-dxcli@1.12.0 ([6dca853](https://github.com/oclif/oclif/commit/6dca853dda72e86fd71924d2c9e40cbad877119e)) - -# [0.14.0](https://github.com/dxcli/create-dxcli/compare/3665a3e7d6818a052a302f3f679ffbcb2254cc53...v0.14.0) (2018-01-19) -### Features +# [0.10.0](https://github.com/oclif/oclif/compare/v0.9.0...v0.10.0) (2018-01-16) -* generator-dxcli@1.12.3 ([b7bcf58](https://github.com/dxcli/create-dxcli/commit/b7bcf58)) - -# [0.13.0](https://github.com/dxcli/create-dxcli/compare/87c3b5015710cf221fd2e72f79ac0bca62682b41...v0.13.0) (2018-01-19) +### Features +* generator-dxcli@1.11.5 ([04e4ce1](https://github.com/oclif/oclif/commit/04e4ce1c8d4443bcab504293392082fcc4e7a6f0)) -### Features -* generator-dxcli@1.12.2 ([3665a3e](https://github.com/dxcli/create-dxcli/commit/3665a3e)) - -# [0.12.0](https://github.com/dxcli/create-dxcli/compare/6dca853dda72e86fd71924d2c9e40cbad877119e...v0.12.0) (2018-01-19) +# [0.9.0](https://github.com/oclif/oclif/compare/v0.8.0...v0.9.0) (2018-01-16) ### Features -* generator-dxcli@1.12.1 ([87c3b50](https://github.com/dxcli/create-dxcli/commit/87c3b50)) +* generator-dxcli@1.11.4 ([9aed3c0](https://github.com/oclif/oclif/commit/9aed3c047608874a8abd967d7932342bd0d8751e)) - -# [0.11.0](https://github.com/dxcli/create-dxcli/compare/04e4ce1c8d4443bcab504293392082fcc4e7a6f0...v0.11.0) (2018-01-19) -### Features +# [0.8.0](https://github.com/oclif/oclif/compare/v0.7.0...v0.8.0) (2018-01-16) -* generator-dxcli@1.12.0 ([6dca853](https://github.com/dxcli/create-dxcli/commit/6dca853)) - -# [0.10.0](https://github.com/dxcli/create-dxcli/compare/9aed3c047608874a8abd967d7932342bd0d8751e...v0.10.0) (2018-01-16) +### Features +* generator-dxcli@1.11.3 ([63f333d](https://github.com/oclif/oclif/commit/63f333df49ff7a4daeabd3505678783e044d61c8)) -### Features -* generator-dxcli@1.11.5 ([04e4ce1](https://github.com/dxcli/create-dxcli/commit/04e4ce1)) - -# [0.9.0](https://github.com/dxcli/create-dxcli/compare/63f333df49ff7a4daeabd3505678783e044d61c8...v0.9.0) (2018-01-16) +# [0.7.0](https://github.com/oclif/oclif/compare/v0.6.0...v0.7.0) (2018-01-16) ### Features -* generator-dxcli@1.11.4 ([9aed3c0](https://github.com/dxcli/create-dxcli/commit/9aed3c0)) +* generator-dxcli@1.11.2 ([3eb57a4](https://github.com/oclif/oclif/commit/3eb57a4521aa14ab99a2bdb7bc936556fc4de400)) - -# [0.8.0](https://github.com/dxcli/create-dxcli/compare/3eb57a4521aa14ab99a2bdb7bc936556fc4de400...v0.8.0) (2018-01-16) -### Features +# [0.6.0](https://github.com/oclif/oclif/compare/v0.5.0...v0.6.0) (2018-01-16) -* generator-dxcli@1.11.3 ([63f333d](https://github.com/dxcli/create-dxcli/commit/63f333d)) - -# [0.7.0](https://github.com/dxcli/create-dxcli/compare/847459dc5f3dba0350de23b16920eb81f18f11cf...v0.7.0) (2018-01-16) +### Features +* generator-dxcli@1.11.1 ([847459d](https://github.com/oclif/oclif/commit/847459dc5f3dba0350de23b16920eb81f18f11cf)) -### Features -* generator-dxcli@1.11.2 ([3eb57a4](https://github.com/dxcli/create-dxcli/commit/3eb57a4)) - -# [0.6.0](https://github.com/dxcli/create-dxcli/compare/58b907c3915d0840cb06f17e8c29d98d2f32f9fe...v0.6.0) (2018-01-16) +# [0.5.0](https://github.com/oclif/oclif/compare/v0.4.0...v0.5.0) (2018-01-16) ### Features -* generator-dxcli@1.11.1 ([847459d](https://github.com/dxcli/create-dxcli/commit/847459d)) +* generator-dxcli@1.11.0 ([58b907c](https://github.com/oclif/oclif/commit/58b907c3915d0840cb06f17e8c29d98d2f32f9fe)) - -# [0.5.0](https://github.com/dxcli/create-dxcli/compare/bcea2202f335c10f47cc78cd1227c07f71d56e75...v0.5.0) (2018-01-16) -### Features +# [0.4.0](https://github.com/oclif/oclif/compare/v0.3.0...v0.4.0) (2018-01-16) -* generator-dxcli@1.11.0 ([58b907c](https://github.com/dxcli/create-dxcli/commit/58b907c)) - -# [0.4.0](https://github.com/dxcli/create-dxcli/compare/b2be420ffcd815fc8e5b82664c0464cfdb02d393...v0.4.0) (2018-01-16) +### Features +* generator-dxcli@1.10.5 ([bcea220](https://github.com/oclif/oclif/commit/bcea2202f335c10f47cc78cd1227c07f71d56e75)) -### Features -* generator-dxcli@1.10.5 ([bcea220](https://github.com/dxcli/create-dxcli/commit/bcea220)) - -# [0.3.0](https://github.com/dxcli/create-dxcli/compare/368dba073f40cd6fa70f5277d337ca61b763e0c9...v0.3.0) (2018-01-16) +# [0.3.0](https://github.com/oclif/oclif/compare/v0.2.4...v0.3.0) (2018-01-16) ### Features -* updated generator-dxcli ([b2be420](https://github.com/dxcli/create-dxcli/commit/b2be420)) +* updated generator-dxcli ([b2be420](https://github.com/oclif/oclif/commit/b2be420ffcd815fc8e5b82664c0464cfdb02d393)) + - -## [0.2.4](https://github.com/dxcli/create-dxcli/compare/a25c8028b61a1b3de22cb3f9bfa9ce640f237ae0...v0.2.4) (2018-01-14) + +## [0.2.4](https://github.com/oclif/oclif/compare/v0.2.3...v0.2.4) (2018-01-14) ### Bug Fixes -* use latest generator-dxcli ([5bd5145](https://github.com/dxcli/create-dxcli/commit/5bd5145)) +* use latest generator-dxcli ([5bd5145](https://github.com/oclif/oclif/commit/5bd5145d1d4679f75d43dc6f05d323be2d79e410)) + - -## [0.2.3](https://github.com/dxcli/create-dxcli/compare/4426bd9eee6c5b28dfc773c46e3382b608fd8cf5...v0.2.3) (2018-01-14) + +## [0.2.3](https://github.com/oclif/oclif/compare/v0.2.2...v0.2.3) (2018-01-14) ### Bug Fixes -* add nyc ([a25c802](https://github.com/dxcli/create-dxcli/commit/a25c802)) -* updated generator ([906425e](https://github.com/dxcli/create-dxcli/commit/906425e)) +* add nyc ([a25c802](https://github.com/oclif/oclif/commit/a25c8028b61a1b3de22cb3f9bfa9ce640f237ae0)) +* updated generator ([906425e](https://github.com/oclif/oclif/commit/906425e10af81675669377bf97f27f9d54e8c622)) + - -## [0.2.2](https://github.com/dxcli/create-dxcli/compare/48b6b4cc422a692b98ca7ecb82ee7f5ac80bde0b...v0.2.2) (2018-01-13) + +## [0.2.2](https://github.com/oclif/oclif/compare/v0.2.1...v0.2.2) (2018-01-13) ### Bug Fixes -* updated generator ([4426bd9](https://github.com/dxcli/create-dxcli/commit/4426bd9)) +* updated generator ([4426bd9](https://github.com/oclif/oclif/commit/4426bd9eee6c5b28dfc773c46e3382b608fd8cf5)) + - -## [0.2.1](https://github.com/dxcli/create-dxcli/compare/0b0a2f40569c884c53e30abfd836ee443e4bee5f...v0.2.1) (2018-01-13) + +## [0.2.1](https://github.com/oclif/oclif/compare/v0.2.0...v0.2.1) (2018-01-13) ### Bug Fixes -* bump semantic-release ([48b6b4c](https://github.com/dxcli/create-dxcli/commit/48b6b4c)) -* updated generator ([608d365](https://github.com/dxcli/create-dxcli/commit/608d365)) -* updated generator ([08e5c6b](https://github.com/dxcli/create-dxcli/commit/08e5c6b)) +* bump semantic-release ([48b6b4c](https://github.com/oclif/oclif/commit/48b6b4cc422a692b98ca7ecb82ee7f5ac80bde0b)) +* updated generator ([608d365](https://github.com/oclif/oclif/commit/608d3656caf1f6621f37c06151b7b0584b19d26a)) +* updated generator ([08e5c6b](https://github.com/oclif/oclif/commit/08e5c6b0416a07efca43ef8fdbbb41348e5c2e36)) + - -# [0.2.0](https://github.com/dxcli/create-dxcli/compare/1221da3e980cb61195f22b9e2d33cb8272942d77...v0.2.0) (2018-01-13) + +# [0.2.0](https://github.com/oclif/oclif/compare/v0.1.0...v0.2.0) (2018-01-13) ### Features -* updated generator ([13e5829](https://github.com/dxcli/create-dxcli/commit/13e5829)) +* updated generator ([13e5829](https://github.com/oclif/oclif/commit/13e58295d48ddf388e78c2a584e167ec6e874301)) + - -# [0.1.0](https://github.com/dxcli/create-dxcli/compare/3f46075c5d04ce2921a716e1fe342446a09db667...v0.1.0) (2018-01-13) + +# [0.1.0](https://github.com/oclif/oclif/compare/6e96584cb7546a15123a5214fbaa69c8507862f7...v0.1.0) (2018-01-13) ### Features -* added generator ([6e96584](https://github.com/dxcli/create-dxcli/commit/6e96584)) -* updated generator ([87b5922](https://github.com/dxcli/create-dxcli/commit/87b5922)) +* added generator ([6e96584](https://github.com/oclif/oclif/commit/6e96584cb7546a15123a5214fbaa69c8507862f7)) +* updated generator ([87b5922](https://github.com/oclif/oclif/commit/87b59229a6afdcde70f972fde4b67531b30ed9a7)) + + + diff --git a/package.json b/package.json index ddc2f900a..5c7466b71 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "oclif", "description": "oclif: create your own CLI", - "version": "3.6.5", + "version": "3.7.0", "author": "Salesforce", "bin": { "oclif": "bin/run" @@ -141,4 +141,4 @@ "registry": "https://registry.npmjs.org" }, "types": "lib/index.d.ts" -} +} \ No newline at end of file