From 8d3b2c7467167ff031b86b7562c128e981428e0e Mon Sep 17 00:00:00 2001 From: danielm-codefresh Date: Wed, 29 Mar 2023 11:56:15 +0300 Subject: [PATCH] release v0.4.15 Signed-off-by: danielm-codefresh --- CHANGELOG.md | 5 +++++ Makefile | 2 +- docs/releases/release_notes.md | 9 +++++---- 3 files changed, 11 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ba0b356a..17bbb157 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog: +# v0.4.15 + +- [docs] fix small typo in Getting Started docs [#445](https://github.com/argoproj-labs/argocd-autopilot/pull/445) +- [chore] fixed security vulnerabilities [#446](https://github.com/argoproj-labs/argocd-autopilot/issues/446) + # v0.4.14 - [docs] improved and organized official docs [#440](https://github.com/argoproj-labs/argocd-autopilot/pull/440) diff --git a/Makefile b/Makefile index e1cb5206..03c1cf11 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -VERSION=v0.4.14 +VERSION=v0.4.15 OUT_DIR=dist CLI_NAME?=argocd-autopilot diff --git a/docs/releases/release_notes.md b/docs/releases/release_notes.md index 4d41461b..80b3c517 100644 --- a/docs/releases/release_notes.md +++ b/docs/releases/release_notes.md @@ -5,7 +5,8 @@ ### Contributors: -- Roi Kramer ([@roi-codefresh](https://github.com/roi-codefresh)) +- Daniel Maizel ([@danielm-codefresh](https://github.com/danielm-codefresh)) +- Nahuel Pastorale ([@NPastorale](https://github.com/NPastorale)) ## Installation: @@ -48,7 +49,7 @@ argocd-autopilot version ```bash # download and extract the binary -curl -L --output - https://github.com/argoproj-labs/argocd-autopilot/releases/download/v0.4.14/argocd-autopilot-linux-amd64.tar.gz | tar zx +curl -L --output - https://github.com/argoproj-labs/argocd-autopilot/releases/download/v0.4.15/argocd-autopilot-linux-amd64.tar.gz | tar zx # move the binary to your $PATH mv ./argocd-autopilot-* /usr/local/bin/argocd-autopilot @@ -61,7 +62,7 @@ argocd-autopilot version ```bash # download and extract the binary -curl -L --output - https://github.com/argoproj-labs/argocd-autopilot/releases/download/v0.4.14/argocd-autopilot-darwin-amd64.tar.gz | tar zx +curl -L --output - https://github.com/argoproj-labs/argocd-autopilot/releases/download/v0.4.15/argocd-autopilot-darwin-amd64.tar.gz | tar zx # move the binary to your $PATH mv ./argocd-autopilot-* /usr/local/bin/argocd-autopilot @@ -78,5 +79,5 @@ When using the Docker image, you have to provide the `.kube` and `.gitconfig` di docker run \ -v ~/.kube:/home/autopilot/.kube \ -v ~/.gitconfig:/home/autopilot/.gitconfig \ - -it quay.io/argoprojlabs/argocd-autopilot:v0.4.14 + -it quay.io/argoprojlabs/argocd-autopilot:v0.4.15 ```