From 65301e3ebfb401ce1b5ce62940cf9019a793e027 Mon Sep 17 00:00:00 2001 From: Noam Gal Date: Tue, 2 Aug 2022 14:33:45 +0300 Subject: [PATCH] v0.4.3 --- CHANGELOG.md | 6 ++++++ Makefile | 2 +- docs/releases/release_notes.md | 10 ++++++---- 3 files changed, 13 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 47db59d4..b9542404 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog: +# v0.4.3 + +* [chore] bumped ubuntu to 22.04 (LTS) [#354](https://github.com/argoproj-labs/argocd-autopilot/pull/354) +* [fix] fix github-enterprise client creation [#353](https://github.com/argoproj-labs/argocd-autopilot/pull/353) +* [fix] --provider not respected "WARNING --provider not specified, assuming provider from url: github" always displayed [#352](https://github.com/argoproj-labs/argocd-autopilot/issues/352) + # v0.4.2 * [fix] uninstall from bitbucket-server does not clean the repository [#347](https://github.com/argoproj-labs/argocd-autopilot/issues/347) diff --git a/Makefile b/Makefile index 612ed2c0..bd9365e2 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -VERSION=v0.4.2 +VERSION=v0.4.3 OUT_DIR=dist CLI_NAME?=argocd-autopilot diff --git a/docs/releases/release_notes.md b/docs/releases/release_notes.md index a94fbc31..41e708c5 100644 --- a/docs/releases/release_notes.md +++ b/docs/releases/release_notes.md @@ -1,5 +1,7 @@ ### Changes -* [fix] uninstall from bitbucket-server does not clean the repository [#347](https://github.com/argoproj-labs/argocd-autopilot/issues/347) +* [chore] bumped ubuntu to 22.04 (LTS) [#354](https://github.com/argoproj-labs/argocd-autopilot/pull/354) +* [fix] fix github-enterprise client creation [#353](https://github.com/argoproj-labs/argocd-autopilot/pull/353) +* [fix] --provider not respected "WARNING --provider not specified, assuming provider from url: github" always displayed [#352](https://github.com/argoproj-labs/argocd-autopilot/issues/352) ### Contributors: - Noam Gal ([@noam-codefresh](https://github.com/noam-codefresh)) @@ -41,7 +43,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.4.2/argocd-autopilot-linux-amd64.tar.gz | tar zx +curl -L --output - https://github.com/argoproj-labs/argocd-autopilot/releases/download/v0.4.3/argocd-autopilot-linux-amd64.tar.gz | tar zx # move the binary to your $PATH mv ./argocd-autopilot-* /usr/local/bin/argocd-autopilot @@ -53,7 +55,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.4.2/argocd-autopilot-darwin-amd64.tar.gz | tar zx +curl -L --output - https://github.com/argoproj-labs/argocd-autopilot/releases/download/v0.4.3/argocd-autopilot-darwin-amd64.tar.gz | tar zx # move the binary to your $PATH mv ./argocd-autopilot-* /usr/local/bin/argocd-autopilot @@ -68,5 +70,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.2 + -it quay.io/argoprojlabs/argocd-autopilot:v0.4.3 ```