diff --git a/CHANGELOG.md b/CHANGELOG.md index 9d36c9fb..1cb09254 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog: +# v0.2.30 + +### Features +* Added bootstrap apps labels. [#235](https://github.com/argoproj-labs/argocd-autopilot/pull/235) + # v0.2.29 ### Bug Fixes diff --git a/Makefile b/Makefile index e010b220..bb375149 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -VERSION=v0.2.29 +VERSION=v0.2.30 OUT_DIR=dist CLI_NAME?=argocd-autopilot diff --git a/docs/releases/release_notes.md b/docs/releases/release_notes.md index 0e7fa2e5..f4565b56 100644 --- a/docs/releases/release_notes.md +++ b/docs/releases/release_notes.md @@ -1,8 +1,8 @@ -### Bug Fixes -* Ignore `resource not found` errors when running `argocd-autopilot repo uninstall`. [#234](https://github.com/argoproj-labs/argocd-autopilot/pull/234) +### Features +* Added bootstrap apps labels. [#235](https://github.com/argoproj-labs/argocd-autopilot/pull/235) ### Contributors: -- Roi Kramer ([@roi-codefresh](https://github.com/roi-codefresh)) +- Elad Laor ([@elad-codefresh](https://github.com/elad-codefresh)) ## Installation: @@ -41,7 +41,7 @@ argocd-autopilot version ### Linux and WSL (using curl): ```bash # download and extract the binary -curl -L --output - https://github.com/argoproj-labs/argocd-autopilot/releases/download/v0.2.29/argocd-autopilot-linux-amd64.tar.gz | tar zx +curl -L --output - https://github.com/argoproj-labs/argocd-autopilot/releases/download/v0.2.30/argocd-autopilot-linux-amd64.tar.gz | tar zx # move the binary to your $PATH mv ./argocd-autopilot-* /usr/local/bin/argocd-autopilot @@ -53,7 +53,7 @@ argocd-autopilot version ### Mac (using curl): ```bash # download and extract the binary -curl -L --output - https://github.com/argoproj-labs/argocd-autopilot/releases/download/v0.2.29/argocd-autopilot-darwin-amd64.tar.gz | tar zx +curl -L --output - https://github.com/argoproj-labs/argocd-autopilot/releases/download/v0.2.30/argocd-autopilot-darwin-amd64.tar.gz | tar zx # move the binary to your $PATH mv ./argocd-autopilot-* /usr/local/bin/argocd-autopilot @@ -68,5 +68,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.2.29 + -it quay.io/argoprojlabs/argocd-autopilot:v0.2.30 ```