diff --git a/CHANGELOG.md b/CHANGELOG.md index fac08a32..5327a3fb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,15 @@ +## [1.2.0](https://github.com/felipecassiors/megatar/compare/v1.1.2...v1.2.0) (2021-03-15) + + +### Features + +* **charts:** add list-images command ([#174](https://github.com/felipecassiors/megatar/issues/174)) ([224625b](https://github.com/felipecassiors/megatar/commit/224625be16797eaf92d952821f8c7c9de0d2a6c3)), closes [#122](https://github.com/felipecassiors/megatar/issues/122) [#122](https://github.com/felipecassiors/megatar/issues/122) [#171](https://github.com/felipecassiors/megatar/issues/171) [#172](https://github.com/felipecassiors/megatar/issues/172) [#153](https://github.com/felipecassiors/megatar/issues/153) [#145](https://github.com/felipecassiors/megatar/issues/145) + + +### Bug Fixes + +* **chart:list-images:** enhance help function and examples ([75fec80](https://github.com/felipecassiors/megatar/commit/75fec80eb03d49891731dc16bb9ac88902fad5b9)) + ### [1.1.2](https://github.com/felipecassiors/megatar/compare/v1.1.1...v1.1.2) (2021-03-15) diff --git a/README.md b/README.md index 217d6d83..20ad44e3 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,7 @@ $ npm install -g megatar $ megatar COMMAND running command... $ megatar (-v|--version|version) -megatar/1.1.2 linux-x64 node-v14.16.0 +megatar/1.2.0 linux-x64 node-v14.16.0 $ megatar --help [COMMAND] USAGE $ megatar COMMAND @@ -69,16 +69,17 @@ USAGE $ megatar chart:list-images CHARTS ARGUMENTS - CHARTS the charts to find the images from + CHARTS the charts to find the images from (can be any value accepted by the helm template command) OPTIONS -h, --help show CLI help -EXAMPLE - $ megatar chart list-images jenkins/jenkins +EXAMPLES + $ megatar chart:list-images jenkins/jenkins + $ megatar chart:list-images https://github.com/jenkinsci/helm-charts/releases/download/jenkins-3.2.4/jenkins-3.2.4.tgz ``` -_See code: [src/commands/chart/list-images.ts](https://github.com/felipecassiors/megatar/blob/v1.1.2/src/commands/chart/list-images.ts)_ +_See code: [src/commands/chart/list-images.ts](https://github.com/felipecassiors/megatar/blob/v1.2.0/src/commands/chart/list-images.ts)_ ## `megatar help [COMMAND]` @@ -118,5 +119,5 @@ EXAMPLES $ megatar save-image hello-world --new-tag test ``` -_See code: [src/commands/save-image.ts](https://github.com/felipecassiors/megatar/blob/v1.1.2/src/commands/save-image.ts)_ +_See code: [src/commands/save-image.ts](https://github.com/felipecassiors/megatar/blob/v1.2.0/src/commands/save-image.ts)_ diff --git a/package-lock.json b/package-lock.json index 48e5701d..2bf77a1f 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "megatar", - "version": "1.1.2", + "version": "1.2.0", "lockfileVersion": 2, "requires": true, "packages": { diff --git a/package.json b/package.json index 8c2cb226..5c626228 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "megatar", "description": "Create full offline Helm chart packages.", - "version": "1.1.2", + "version": "1.2.0", "author": "Felipe Santos @felipecassiors", "homepage": "https://github.com/felipecassiors/megatar#readme", "repository": "felipecassiors/megatar",