From 7819e90b2c90bc988ad1ba9b66950cd208423436 Mon Sep 17 00:00:00 2001 From: "roi.kramer" Date: Mon, 14 Mar 2022 16:49:59 +0200 Subject: [PATCH] release v0.3.0 --- CHANGELOG.md | 9 +++++++++ Makefile | 2 +- docs/releases/release_notes.md | 15 +++++++++------ 3 files changed, 19 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1cb09254..8d1079d7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # Changelog: +# v0.3.0 + +### Security Fixes +* Moved to using Argo-CD and ApplicationSet stable versions (currently: argocd-v2.3.1 and applicationset-v0.4.1). [#247](https://github.com/argoproj-labs/argocd-autopilot/pull/247) + +### Changes +* Removed dependency on `argoproj-labs/applicationset` and moved to install it from https://github.com/argoproj/argo-cd/tree/master/manifests/addons/applicationset. [#247](https://github.com/argoproj-labs/argocd-autopilot/pull/247) + + # v0.2.30 ### Features diff --git a/Makefile b/Makefile index bb375149..23a579a4 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -VERSION=v0.2.30 +VERSION=v0.3.0 OUT_DIR=dist CLI_NAME?=argocd-autopilot diff --git a/docs/releases/release_notes.md b/docs/releases/release_notes.md index f4565b56..5d38cb3d 100644 --- a/docs/releases/release_notes.md +++ b/docs/releases/release_notes.md @@ -1,8 +1,11 @@ -### Features -* Added bootstrap apps labels. [#235](https://github.com/argoproj-labs/argocd-autopilot/pull/235) +### Security Fixes +* Moved to using Argo-CD and ApplicationSet stable versions (currently: argocd-v2.3.1 and applicationset-v0.4.1). [#247](https://github.com/argoproj-labs/argocd-autopilot/pull/247) + +### Changes +* Removed dependency on `argoproj-labs/applicationset` and moved to install it from https://github.com/argoproj/argo-cd/tree/master/manifests/addons/applicationset. [#247](https://github.com/argoproj-labs/argocd-autopilot/pull/247) ### Contributors: -- Elad Laor ([@elad-codefresh](https://github.com/elad-codefresh)) +- Roi Kramer ([@roi-codefresh](https://github.com/roi-codefresh)) ## Installation: @@ -41,7 +44,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.30/argocd-autopilot-linux-amd64.tar.gz | tar zx +curl -L --output - https://github.com/argoproj-labs/argocd-autopilot/releases/download/v0.3.0/argocd-autopilot-linux-amd64.tar.gz | tar zx # move the binary to your $PATH mv ./argocd-autopilot-* /usr/local/bin/argocd-autopilot @@ -53,7 +56,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.30/argocd-autopilot-darwin-amd64.tar.gz | tar zx +curl -L --output - https://github.com/argoproj-labs/argocd-autopilot/releases/download/v0.3.0/argocd-autopilot-darwin-amd64.tar.gz | tar zx # move the binary to your $PATH mv ./argocd-autopilot-* /usr/local/bin/argocd-autopilot @@ -68,5 +71,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.30 + -it quay.io/argoprojlabs/argocd-autopilot:v0.3.0 ```