From 534f514aedf439157aa1079e92b74ac6c0fb3991 Mon Sep 17 00:00:00 2001 From: Noam Gal Date: Wed, 7 Sep 2022 13:54:39 +0300 Subject: [PATCH] v0.4.6 --- CHANGELOG.md | 3 +++ Makefile | 2 +- docs/releases/release_notes.md | 10 +++++----- 3 files changed, 9 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5b6fb12b..b7898289 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Changelog: +# v0.4.6 +- [fix] When creating a new repo, sometimes getDefaultBranch fails [#372](https://github.com/argoproj-labs/argocd-autopilot/issues/372) + # v0.4.5 - Added support for bitbucket cloud diff --git a/Makefile b/Makefile index dc60f4f8..f6131eed 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -VERSION=v0.4.5 +VERSION=v0.4.6 OUT_DIR=dist CLI_NAME?=argocd-autopilot diff --git a/docs/releases/release_notes.md b/docs/releases/release_notes.md index 784f65b8..93fd8f7c 100644 --- a/docs/releases/release_notes.md +++ b/docs/releases/release_notes.md @@ -1,10 +1,10 @@ ### Changes -- Added support for bitbucket cloud +- [fix] When creating a new repo, sometimes getDefaultBranch fails [#372](https://github.com/argoproj-labs/argocd-autopilot/issues/372) ### Contributors: -- Kim Aharfi ([@kim-codefresh](https://github.com/kim-codefresh)) +- Noam Gal ([@noam-codefresh](https://github.com/noam-codefresh)) ## Installation: @@ -47,7 +47,7 @@ argocd-autopilot version ```bash # download and extract the binary -curl -L --output - https://github.com/argoproj-labs/argocd-autopilot/releases/download/v0.4.5/argocd-autopilot-linux-amd64.tar.gz | tar zx +curl -L --output - https://github.com/argoproj-labs/argocd-autopilot/releases/download/v0.4.6/argocd-autopilot-linux-amd64.tar.gz | tar zx # move the binary to your $PATH mv ./argocd-autopilot-* /usr/local/bin/argocd-autopilot @@ -60,7 +60,7 @@ argocd-autopilot version ```bash # download and extract the binary -curl -L --output - https://github.com/argoproj-labs/argocd-autopilot/releases/download/v0.4.5/argocd-autopilot-darwin-amd64.tar.gz | tar zx +curl -L --output - https://github.com/argoproj-labs/argocd-autopilot/releases/download/v0.4.6/argocd-autopilot-darwin-amd64.tar.gz | tar zx # move the binary to your $PATH mv ./argocd-autopilot-* /usr/local/bin/argocd-autopilot @@ -77,5 +77,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.5 + -it quay.io/argoprojlabs/argocd-autopilot:v0.4.6 ```