From b0931695a2f2a30c495e2c8ad77c7721bf34bac4 Mon Sep 17 00:00:00 2001 From: Noam Gal Date: Fri, 10 Sep 2021 16:40:32 +0300 Subject: [PATCH] v0.2.16 --- CHANGELOG.md | 6 ++++++ Makefile | 2 +- docs/releases/release_notes.md | 11 ++++------- 3 files changed, 11 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3d5b7d6d..361955b1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,12 @@ # v0.2.15 +### Bug fixes: +* Support Bitbucket stash as provider. [#171](https://github.com/argoproj-labs/argocd-autopilot/issues/171) + Added `--git-user` flag (and `GIT_USER` env variable) to support sending username for git authentication during clone/push + +# v0.2.15 + ### Bug fixes: * Typo in error message [#162](https://github.com/argoproj-labs/argocd-autopilot/pull/162) * The cluster-resources application-set should not have an empty project value [#165](https://github.com/argoproj-labs/argocd-autopilot/issues/165) diff --git a/Makefile b/Makefile index f2316f95..1af88c75 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -VERSION=v0.2.15 +VERSION=v0.2.16 OUT_DIR=dist CLI_NAME?=argocd-autopilot diff --git a/docs/releases/release_notes.md b/docs/releases/release_notes.md index e522c177..8d132066 100644 --- a/docs/releases/release_notes.md +++ b/docs/releases/release_notes.md @@ -1,15 +1,12 @@ ### Bug fixes: -* Typo in error message [#162](https://github.com/argoproj-labs/argocd-autopilot/pull/162) -* The cluster-resources application-set should not have an empty project value [#165](https://github.com/argoproj-labs/argocd-autopilot/issues/165) -* Creating a DirApp with an existing name overwrites the previous application [#158](https://github.com/argoproj-labs/argocd-autopilot/issues/158) -* Creating a DirApp with no path in the repo causes app to not be created in the cluster [#166](https://github.com/argoproj-labs/argocd-autopilot/issues/166) +* Support Bitbucket stash as provider. [#171](https://github.com/argoproj-labs/argocd-autopilot/issues/171) + Added `--git-user` flag (and `GIT_USER` env variable) to support sending username for git authentication during clone/push ### Dependencies: * Default bootstrap now installs Argo-CD 2.1.1 and ApplicationSet 0.2.0 [#168](https://github.com/argoproj-labs/argocd-autopilot/pull/168) ### Contributors: -- Laurent Rochette ([@lrochette](https://github.com/lrochette)) - Noam Gal ([@noam-codefresh](https://github.com/noam-codefresh)) ## Installation: @@ -28,7 +25,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.14/argocd-autopilot-linux-amd64.tar.gz | tar zx +curl -L --output - https://github.com/argoproj-labs/argocd-autopilot/releases/download/v0.2.16/argocd-autopilot-linux-amd64.tar.gz | tar zx # move the binary to your $PATH mv ./argocd-autopilot-* /usr/local/bin/argocd-autopilot @@ -40,7 +37,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.14/argocd-autopilot-darwin-amd64.tar.gz | tar zx +curl -L --output - https://github.com/argoproj-labs/argocd-autopilot/releases/download/v0.2.16/argocd-autopilot-darwin-amd64.tar.gz | tar zx # move the binary to your $PATH mv ./argocd-autopilot-* /usr/local/bin/argocd-autopilot