From 21ea2d79d20e1081e8db883a608fffa175372374 Mon Sep 17 00:00:00 2001 From: "roi.kramer" Date: Tue, 12 Oct 2021 11:49:54 +0300 Subject: [PATCH] v0.2.23 --- CHANGELOG.md | 5 +++++ Makefile | 2 +- docs/releases/release_notes.md | 11 +++++------ 3 files changed, 11 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f08de51e..85cc7453 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog: +# v0.2.23 + +### Features +* Use default branch from git config instead of master [#196](https://github.com/argoproj-labs/argocd-autopilot/pull/196) + # v0.2.22 ### Features diff --git a/Makefile b/Makefile index 525dc10f..dea707bd 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -VERSION=v0.2.22 +VERSION=v0.2.23 OUT_DIR=dist CLI_NAME?=argocd-autopilot diff --git a/docs/releases/release_notes.md b/docs/releases/release_notes.md index ac5d21f3..df297751 100644 --- a/docs/releases/release_notes.md +++ b/docs/releases/release_notes.md @@ -1,9 +1,8 @@ ### Features -* Added a --force flag to `argocd-autopilot repo uninstall`: not allowing cluster and repo deletion errors from stopping the uninstall flow. -* Added a --fast-exit flag to `argocd-autopilot repo uninstall`: not waiting for full deletion of cluster resources. +* Use default branch from git config instead of master [#196](https://github.com/argoproj-labs/argocd-autopilot/pull/196) ### Contributors: -- Elad Laor ([@elad-codefresh](https://github.com/elad-codefresh)) +- Roi Kramer ([@roi-codefresh](https://github.com/roi-codefresh)) ## Installation: @@ -21,7 +20,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.22/argocd-autopilot-linux-amd64.tar.gz | tar zx +curl -L --output - https://github.com/argoproj-labs/argocd-autopilot/releases/download/v0.2.23/argocd-autopilot-linux-amd64.tar.gz | tar zx # move the binary to your $PATH mv ./argocd-autopilot-* /usr/local/bin/argocd-autopilot @@ -33,7 +32,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.22/argocd-autopilot-darwin-amd64.tar.gz | tar zx +curl -L --output - https://github.com/argoproj-labs/argocd-autopilot/releases/download/v0.2.23/argocd-autopilot-darwin-amd64.tar.gz | tar zx # move the binary to your $PATH mv ./argocd-autopilot-* /usr/local/bin/argocd-autopilot @@ -48,5 +47,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.22 + -it quay.io/argoprojlabs/argocd-autopilot:v0.2.23 ```