From ec7f7e99ec09680cffe61186ef42892bde92f30a Mon Sep 17 00:00:00 2001 From: Noam Gal Date: Tue, 7 Mar 2023 19:15:13 +0200 Subject: [PATCH] updated release notes Signed-off-by: Noam Gal --- CHANGELOG.md | 5 +++++ Makefile | 2 +- docs/releases/release_notes.md | 12 +++++++----- 3 files changed, 13 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d2292ac9..e51183ae 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog: +# v0.4.13 + +- [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) + # v0.4.12 - [fix] Validate that repo name is not empty [#426](https://github.com/argoproj-labs/argocd-autopilot/pull/426) diff --git a/Makefile b/Makefile index ab66d7d6..a123d6de 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -VERSION=v0.4.12 +VERSION=v0.4.13 OUT_DIR=dist CLI_NAME?=argocd-autopilot diff --git a/docs/releases/release_notes.md b/docs/releases/release_notes.md index 5fff772f..c32dcfd6 100644 --- a/docs/releases/release_notes.md +++ b/docs/releases/release_notes.md @@ -1,10 +1,12 @@ ### Changes -- [fix] Validate that repo name is not empty [#426](https://github.com/argoproj-labs/argocd-autopilot/pull/426) +- [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) ### Contributors: -- Daniel Maizel ([@danielm-codefresh](https://github.com/danielm-codefresh)) +- Thomas Stadler ([@thomasstxyz](https://github.com/thomasstxyz)) +- Noam Gal ([@noam-codefresh](https://github.com/noam-codefresh)) ## Installation: @@ -47,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.12/argocd-autopilot-linux-amd64.tar.gz | tar zx +curl -L --output - https://github.com/argoproj-labs/argocd-autopilot/releases/download/v0.4.13/argocd-autopilot-linux-amd64.tar.gz | tar zx # move the binary to your $PATH mv ./argocd-autopilot-* /usr/local/bin/argocd-autopilot @@ -60,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.12/argocd-autopilot-darwin-amd64.tar.gz | tar zx +curl -L --output - https://github.com/argoproj-labs/argocd-autopilot/releases/download/v0.4.13/argocd-autopilot-darwin-amd64.tar.gz | tar zx # move the binary to your $PATH mv ./argocd-autopilot-* /usr/local/bin/argocd-autopilot @@ -77,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.12 + -it quay.io/argoprojlabs/argocd-autopilot:v0.4.13 ```