From bf3862a47cac6c7e928f6cac56c23d46024598e4 Mon Sep 17 00:00:00 2001 From: kim-codefresh Date: Tue, 23 Aug 2022 11:58:30 +0300 Subject: [PATCH] v0.4.5 --- 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 248323a0..5b6fb12b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Changelog: +# v0.4.5 +- Added support for bitbucket cloud + # v0.4.4 - [fix] find GitLab group by name, instead of searching in 1st page of list diff --git a/Makefile b/Makefile index f61f514c..dc60f4f8 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -VERSION=v0.4.4 +VERSION=v0.4.5 OUT_DIR=dist CLI_NAME?=argocd-autopilot diff --git a/docs/releases/release_notes.md b/docs/releases/release_notes.md index 067a5ccc..784f65b8 100644 --- a/docs/releases/release_notes.md +++ b/docs/releases/release_notes.md @@ -1,10 +1,10 @@ ### Changes -- [fix] find GitLab group by name, instead of searching in 1st page of list +- Added support for bitbucket cloud ### Contributors: -- Noam Gal ([@noam-codefresh](https://github.com/noam-codefresh)) +- Kim Aharfi ([@kim-codefresh](https://github.com/kim-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.4/argocd-autopilot-linux-amd64.tar.gz | tar zx +curl -L --output - https://github.com/argoproj-labs/argocd-autopilot/releases/download/v0.4.5/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.4/argocd-autopilot-darwin-amd64.tar.gz | tar zx +curl -L --output - https://github.com/argoproj-labs/argocd-autopilot/releases/download/v0.4.5/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.4 + -it quay.io/argoprojlabs/argocd-autopilot:v0.4.5 ```