From 5bbc9d255c2b3ae6dd185c341aef317f595a85ac Mon Sep 17 00:00:00 2001 From: Noam Gal Date: Mon, 7 Jun 2021 11:29:24 +0300 Subject: [PATCH] v0.2.0 (#86) * v0.2.0 * fixed brew upgrade --- CHANGELOG.md | 16 ++++++++++++++++ Makefile | 2 +- build/release.yml | 2 +- docs/releases/release_notes.md | 14 ++++++++++++-- 4 files changed, 30 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d4274b5d..d0ca1961 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,21 @@ # Changelog: +# v0.2.0 + +### Breaking Changes: +* Combined `--repo`, `--installation-path` and `--revision` into a single url, set by `--repo` with the following syntax: +``` +argocd-autopilot --repo https://github.com/owner/name/path/to/installation_path?ref=branch +``` +The `REPO_URL` environment variable also uses the new syntax + +### Bug fixes: +* failed to build bootstrap manifests [#82](https://github.com/argoproj-labs/argocd-autopilot/issues/82) +* Adding two applications with the same ns causes sync ping-pong [#23](https://github.com/argoproj-labs/argocd-autopilot/issues/23) + +### Additional changes: +* The `RunRepoCreate` func now returns `(*git.CloneOptions, error)` + # v0.1.10 ### Bug fixes: diff --git a/Makefile b/Makefile index d75691c9..f7d2417d 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -VERSION=v0.1.10 +VERSION=v0.2.0 OUT_DIR=dist CLI_NAME?=argocd-autopilot diff --git a/build/release.yml b/build/release.yml index 34532669..bc86666c 100644 --- a/build/release.yml +++ b/build/release.yml @@ -178,7 +178,7 @@ steps: bump_brew_formula: stage: Release title: bump brew formula version - image: linuxbrew/linuxbrew:latest + image: linuxbrew/brew:latest environment: - HOMEBREW_GITHUB_API_TOKEN=${{GITHUB_TOKEN}} commands: diff --git a/docs/releases/release_notes.md b/docs/releases/release_notes.md index 0b17250a..48d401c3 100644 --- a/docs/releases/release_notes.md +++ b/docs/releases/release_notes.md @@ -1,10 +1,20 @@ -### Bug fixes: +### Breaking Changes: +* Combined `--repo`, `--installation-path` and `--revision` into a single url, set by `--repo` with the following syntax: +``` +argocd-autopilot --repo https://github.com/owner/name/path/to/installation_path?ref=branch +``` +The `REPO_URL` environment variable also uses the new syntax -* removed dependency on `packr` for compiling source with additional assets required by argo-cd dependency. +### Bug fixes: +* failed to build bootstrap manifests [#82](https://github.com/argoproj-labs/argocd-autopilot/issues/82) +* Adding two applications with the same ns causes sync ping-pong [#23](https://github.com/argoproj-labs/argocd-autopilot/issues/23) +### Additional changes: +* The `RunRepoCreate` func now returns `(*git.CloneOptions, error)` dependency on `packr` for compiling source with additional assets required by argo-cd dependency. ### Contributors: - Roi Kramer ([@roi-codefresh](https://github.com/roi-codefresh)) +- Noam Gal ([@noam-codefresh](https://github.com/noam-codefresh)) ## Installation: