From 3554f427bdc22246f9e50d2788c6d9b6c57d1f0b Mon Sep 17 00:00:00 2001 From: danmx Date: Thu, 27 Aug 2020 10:48:29 +0200 Subject: [PATCH] chore(release): version 0.7.0 Signed-off-by: danmx --- CHANGELOG.md | 9 ++++++++- README.md | 4 ++-- docs/00-get-started.md | 2 +- tools/get_workspace_status.sh | 2 +- 4 files changed, 12 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3c31fb8..5de3513 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,12 @@ ## [Unreleased] + + +## [0.7.0] - 2020-08-27 +### Chore +- **release:** version 0.7.0 + ### Feat - **cmd:** moving target to arg instead of separate flag @@ -220,7 +226,8 @@ ## 0.0.1 - 2019-03-18 -[Unreleased]: https://github.com/danmx/sigil/compare/0.6.1...HEAD +[Unreleased]: https://github.com/danmx/sigil/compare/0.7.0...HEAD +[0.7.0]: https://github.com/danmx/sigil/compare/0.6.1...0.7.0 [0.6.1]: https://github.com/danmx/sigil/compare/0.6.0...0.6.1 [0.6.0]: https://github.com/danmx/sigil/compare/0.5.3...0.6.0 [0.5.3]: https://github.com/danmx/sigil/compare/0.5.2...0.5.3 diff --git a/README.md b/README.md index 6efcc0a..52a6d49 100644 --- a/README.md +++ b/README.md @@ -53,7 +53,7 @@ brew install danmx/sigil/sigil ### Docker ```shell -docker pull danmx/sigil:0.6 +docker pull danmx/sigil:0.7 ``` ## Examples @@ -63,7 +63,7 @@ docker pull danmx/sigil:0.6 Docker: ```shell -docker run --rm -it -v "${HOME}"/.sigil:/home/nonroot/.sigil -v "${HOME}"/.aws:/home/.aws danmx/sigil:0.6 list --output-format wide +docker run --rm -it -v "${HOME}"/.sigil:/home/nonroot/.sigil -v "${HOME}"/.aws:/home/.aws danmx/sigil:0.7 list --output-format wide ``` Binary: diff --git a/docs/00-get-started.md b/docs/00-get-started.md index 3933507..de4f35e 100644 --- a/docs/00-get-started.md +++ b/docs/00-get-started.md @@ -34,7 +34,7 @@ brew install danmx/sigil/sigil ### Docker ```shell -docker pull danmx/sigil:0.6 +docker pull danmx/sigil:0.7 ``` ### Source code diff --git a/tools/get_workspace_status.sh b/tools/get_workspace_status.sh index 578ac8a..970142e 100755 --- a/tools/get_workspace_status.sh +++ b/tools/get_workspace_status.sh @@ -3,7 +3,7 @@ set -eu appName="sigil" -appVersion="${VERSION:-0.6.1}" +appVersion="${VERSION:-0.7.0}" gitCommit="${GIT_COMMIT:-$(git rev-parse HEAD)}" gitBranch="${GIT_BRANCH:-$(git rev-parse --abbrev-ref HEAD)}"