From e05103a478dbe7e36164a5f2198cd04673b27222 Mon Sep 17 00:00:00 2001 From: "roi.kramer" Date: Sun, 19 Mar 2023 17:26:30 +0200 Subject: [PATCH] release v0.4.14 Signed-off-by: roi.kramer --- CHANGELOG.md | 5 +++++ Makefile | 2 +- docs/releases/release_notes.md | 13 ++++++------- 3 files changed, 12 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e51183ae..ba0b356a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog: +# v0.4.14 + +- [docs] improved and organized official docs [#440](https://github.com/argoproj-labs/argocd-autopilot/pull/440) +- [fix] redundant validation of write permission when using `--recover` [#443](https://github.com/argoproj-labs/argocd-autopilot/issues/443) + # v0.4.13 - [docs] docs: fix wordings and typos in Getting-Started [#431](https://github.com/argoproj-labs/argocd-autopilot/pull/431) diff --git a/Makefile b/Makefile index a123d6de..e1cb5206 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -VERSION=v0.4.13 +VERSION=v0.4.14 OUT_DIR=dist CLI_NAME?=argocd-autopilot diff --git a/docs/releases/release_notes.md b/docs/releases/release_notes.md index c32dcfd6..4d41461b 100644 --- a/docs/releases/release_notes.md +++ b/docs/releases/release_notes.md @@ -1,12 +1,11 @@ ### Changes -- [docs] docs: fix wordings and typos in Getting-Started [#431](https://github.com/argoproj-labs/argocd-autopilot/pull/431) -- [fix] when bootstrap repo contains a port, argocd-tls-certs-cm is invalid [#434](https://github.com/argoproj-labs/argocd-autopilot/issues/434) +- [docs] improved and organized official docs [#440](https://github.com/argoproj-labs/argocd-autopilot/pull/440) +- [fix] redundant validation of write permission when using `--recover` [#443](https://github.com/argoproj-labs/argocd-autopilot/issues/443) ### Contributors: -- Thomas Stadler ([@thomasstxyz](https://github.com/thomasstxyz)) -- Noam Gal ([@noam-codefresh](https://github.com/noam-codefresh)) +- Roi Kramer ([@roi-codefresh](https://github.com/roi-codefresh)) ## Installation: @@ -49,7 +48,7 @@ argocd-autopilot version ```bash # download and extract the binary -curl -L --output - https://github.com/argoproj-labs/argocd-autopilot/releases/download/v0.4.13/argocd-autopilot-linux-amd64.tar.gz | tar zx +curl -L --output - https://github.com/argoproj-labs/argocd-autopilot/releases/download/v0.4.14/argocd-autopilot-linux-amd64.tar.gz | tar zx # move the binary to your $PATH mv ./argocd-autopilot-* /usr/local/bin/argocd-autopilot @@ -62,7 +61,7 @@ argocd-autopilot version ```bash # download and extract the binary -curl -L --output - https://github.com/argoproj-labs/argocd-autopilot/releases/download/v0.4.13/argocd-autopilot-darwin-amd64.tar.gz | tar zx +curl -L --output - https://github.com/argoproj-labs/argocd-autopilot/releases/download/v0.4.14/argocd-autopilot-darwin-amd64.tar.gz | tar zx # move the binary to your $PATH mv ./argocd-autopilot-* /usr/local/bin/argocd-autopilot @@ -79,5 +78,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.13 + -it quay.io/argoprojlabs/argocd-autopilot:v0.4.14 ```