From 7a325d8f5ff187ea25344b3a6efd68f9fd111a32 Mon Sep 17 00:00:00 2001 From: Elad Laor Date: Mon, 29 Nov 2021 18:21:18 +0200 Subject: [PATCH] v0.2.27 (#214) --- CHANGELOG.md | 5 +++++ Makefile | 2 +- docs/releases/release_notes.md | 10 +++++----- 3 files changed, 11 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 913ab8bf..d0d1391c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog: +# v0.2.27 + +### Features +* Added option to create a git-src repo in case it doesn't already exist. [#209](https://github.com/argoproj-labs/argocd-autopilot/pull/212) + # v0.2.26 ### Features diff --git a/Makefile b/Makefile index b4e63c83..a4c7a2ee 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -VERSION=v0.2.26 +VERSION=v0.2.27 OUT_DIR=dist CLI_NAME?=argocd-autopilot diff --git a/docs/releases/release_notes.md b/docs/releases/release_notes.md index 7bc3f7d9..c7249262 100644 --- a/docs/releases/release_notes.md +++ b/docs/releases/release_notes.md @@ -1,8 +1,8 @@ ### Features -* Added support for gitlab git provider. [#209](https://github.com/argoproj-labs/argocd-autopilot/pull/209) +* Added option to create a git-src repo in case it doesn't already exist. [#209](https://github.com/argoproj-labs/argocd-autopilot/pull/212) ### Contributors: -- Daniel Maizel ([@danielm-codefresh](https://github.com/danielm-codefresh)) +- Elad Laor ([@elad-codefresh](https://github.com/elad-codefresh)) ## Installation: @@ -20,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.26/argocd-autopilot-linux-amd64.tar.gz | tar zx +curl -L --output - https://github.com/argoproj-labs/argocd-autopilot/releases/download/v0.2.27/argocd-autopilot-linux-amd64.tar.gz | tar zx # move the binary to your $PATH mv ./argocd-autopilot-* /usr/local/bin/argocd-autopilot @@ -32,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.26/argocd-autopilot-darwin-amd64.tar.gz | tar zx +curl -L --output - https://github.com/argoproj-labs/argocd-autopilot/releases/download/v0.2.27/argocd-autopilot-darwin-amd64.tar.gz | tar zx # move the binary to your $PATH mv ./argocd-autopilot-* /usr/local/bin/argocd-autopilot @@ -47,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.26 + -it quay.io/argoprojlabs/argocd-autopilot:v0.2.27 ```