From d9ef2898bdc79bacb167a1db2373959eaca9f264 Mon Sep 17 00:00:00 2001 From: Salim Afiune Maya Date: Tue, 26 May 2020 10:25:40 -0600 Subject: [PATCH] Release v0.1.13 (#116) Signed-off-by: Salim Afiune Maya --- CHANGELOG.md | 8 ++++++++ RELEASE_NOTES.md | 15 +++++---------- VERSION | 2 +- scripts/release.sh | 1 + 4 files changed, 15 insertions(+), 11 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e76080c5d..3dc66852e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +# v0.1.13 + +## Features +* feat(cli): avoid displaying API key secret (#115) (Salim Afiune Maya)([3305b09](https://github.com/lacework/go-sdk/commit/3305b095fb43a3352255e472f38ba8f19b6d7c4b)) +* feat(release): add version bump after release (Salim Afiune Maya)([4c67b3f](https://github.com/lacework/go-sdk/commit/4c67b3fbb74fa9a05db1a712c73d1570246ffc89)) +## Bug Fixes +* fix(release): purge the docker manifest to udate (Salim Afiune Maya)([ed58109](https://github.com/lacework/go-sdk/commit/ed58109a5ea45b7e7b7f4d9fde86f81e183f726b)) +--- # v0.1.12 ## Features diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index 1c620b8c5..ae38e4113 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -1,16 +1,11 @@ # Release Notes -Another day, another release. These are the release notes for the version `v0.1.12`. +Another day, another release. These are the release notes for the version `v0.1.13`. ## Features -* feat(cli): manage compliance reports (GCP Azure AWS) (Salim Afiune Maya)([1d0155f](https://github.com/lacework/go-sdk/commit/1d0155f48ca4dee6a4f9381870645f3c07597dff)) -* feat(api): add compliance service (Salim Afiune Maya)([862812c](https://github.com/lacework/go-sdk/commit/862812c4635ded3647f3e7b76e2807de06c652ba)) -* feat(cli): list integrations of a specific type (Salim Afiune Maya)([e1d3674](https://github.com/lacework/go-sdk/commit/e1d36740f7d7fe496f7746624519c81a670d054a)) -## Documentation Updates -* docs(cli): remove the need to install using sudo (Salim Afiune Maya)([4534c57](https://github.com/lacework/go-sdk/commit/4534c576779ca769d053c7c19e85a6029741810e)) -## Other Changes -* ci: fix typo in release.sh script (Salim Afiune Maya)([cf6a836](https://github.com/lacework/go-sdk/commit/cf6a8369e2a6b906fb604afc6213cf7c04df8095)) -* ci: add docker images to release notes (Salim Afiune Maya)([4f8f945](https://github.com/lacework/go-sdk/commit/4f8f945f49d2af51856617d994cd031b02ba6678)) -* test(integration): add compliance tests (Salim Afiune Maya)([d41fb49](https://github.com/lacework/go-sdk/commit/d41fb49838a7c7990acd4b7f4fd40f0a98f2452a)) +* feat(cli): avoid displaying API key secret (#115) (Salim Afiune Maya)([3305b09](https://github.com/lacework/go-sdk/commit/3305b095fb43a3352255e472f38ba8f19b6d7c4b)) +* feat(release): add version bump after release (Salim Afiune Maya)([4c67b3f](https://github.com/lacework/go-sdk/commit/4c67b3fbb74fa9a05db1a712c73d1570246ffc89)) +## Bug Fixes +* fix(release): purge the docker manifest to udate (Salim Afiune Maya)([ed58109](https://github.com/lacework/go-sdk/commit/ed58109a5ea45b7e7b7f4d9fde86f81e183f726b)) ## Docker Images * `docker pull techallylw/lacework-cli:latest` diff --git a/VERSION b/VERSION index 37e7805f7..7ac4e5e38 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.1.13-dev +0.1.13 diff --git a/scripts/release.sh b/scripts/release.sh index a692a4601..8a0028b04 100755 --- a/scripts/release.sh +++ b/scripts/release.sh @@ -109,6 +109,7 @@ update_changelog() { } load_list_of_changes() { + latest_version=$(find_latest_version) local _list_of_changes=$(git log --no-merges --pretty="* %s (%an)([%h](https://github.com/lacework/${project_name}/commit/%H))" ${latest_version}..master) echo "## Features" > CHANGES.md echo "$_list_of_changes" | grep "\* feat[:(]" >> CHANGES.md