From 1ce7c092ccb1487b20313aa273568bdd723c785f Mon Sep 17 00:00:00 2001 From: "roi.kramer" Date: Wed, 11 Jan 2023 10:47:04 +0200 Subject: [PATCH] release v0.4.10 Signed-off-by: roi.kramer --- CHANGELOG.md | 3 +++ Makefile | 2 +- docs/releases/release_notes.md | 10 +++++----- 3 files changed, 9 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 40ecf537..b5ab0ec7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Changelog: +# v0.4.10 +- [fix] Fail early on `repo bootstrap` when there is no repo write permission [#409](https://github.com/argoproj-labs/argocd-autopilot/pull/409) + # v0.4.9 - [fix] fix nil pointer deref in provider code when there are network errors [#403](https://github.com/argoproj-labs/argocd-autopilot/pull/403) diff --git a/Makefile b/Makefile index 7f00a5fa..29eb00c2 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -VERSION=v0.4.9 +VERSION=v0.4.10 OUT_DIR=dist CLI_NAME?=argocd-autopilot diff --git a/docs/releases/release_notes.md b/docs/releases/release_notes.md index 7ab9d444..f3efab6c 100644 --- a/docs/releases/release_notes.md +++ b/docs/releases/release_notes.md @@ -1,10 +1,10 @@ ### Changes -- [fix] fix nil pointer deref in provider code when there are network errors [#403](https://github.com/argoproj-labs/argocd-autopilot/pull/403) +- [fix] Fail early on `repo bootstrap` when there is no repo write permission [#409](https://github.com/argoproj-labs/argocd-autopilot/pull/409) ### Contributors: -- Roi Kramer ([@roi-codefresh](https://github.com/roi-codefresh)) +- Kim Aharfi ([@kim-codefresh](https://github.com/kim-codefresh)) ## Installation: @@ -47,7 +47,7 @@ argocd-autopilot version ```bash # download and extract the binary -curl -L --output - https://github.com/argoproj-labs/argocd-autopilot/releases/download/v0.4.9/argocd-autopilot-linux-amd64.tar.gz | tar zx +curl -L --output - https://github.com/argoproj-labs/argocd-autopilot/releases/download/v0.4.10/argocd-autopilot-linux-amd64.tar.gz | tar zx # move the binary to your $PATH mv ./argocd-autopilot-* /usr/local/bin/argocd-autopilot @@ -60,7 +60,7 @@ argocd-autopilot version ```bash # download and extract the binary -curl -L --output - https://github.com/argoproj-labs/argocd-autopilot/releases/download/v0.4.9/argocd-autopilot-darwin-amd64.tar.gz | tar zx +curl -L --output - https://github.com/argoproj-labs/argocd-autopilot/releases/download/v0.4.10/argocd-autopilot-darwin-amd64.tar.gz | tar zx # move the binary to your $PATH mv ./argocd-autopilot-* /usr/local/bin/argocd-autopilot @@ -77,5 +77,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.9 + -it quay.io/argoprojlabs/argocd-autopilot:v0.4.10 ```