From 76d7080b60b09445c686b35d2697fa9308842a53 Mon Sep 17 00:00:00 2001 From: rui Date: Fri, 11 Mar 2022 08:47:48 -0500 Subject: [PATCH] release: 0.19.2 (#2133) * release: 0.19.2 Signed-off-by: Rui Chen * update changelog Signed-off-by: Rui Chen --- CHANGELOG.md | 9 +++++++++ kustomize/bundle.yaml | 2 +- main.go | 2 +- 3 files changed, 11 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 022c71086f..476a5dd131 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,12 @@ +# v0.19.2 + +Bug fix release for github and update docs to reflect the docker registry support change. + +## What's Changed + +* fix: fix unmarshall error in graphql call by @raymondchen625 in https://github.com/runatlantis/atlantis/pull/2128 +* docs: update docker registry link to ghcr by @marceloboeira in https://github.com/runatlantis/atlantis/pull/2130 + # v0.19.1 Bug fix release, most importantly fixing the wrong version number associated with v0.19.0. diff --git a/kustomize/bundle.yaml b/kustomize/bundle.yaml index 9aa97d67ce..e112839e5e 100644 --- a/kustomize/bundle.yaml +++ b/kustomize/bundle.yaml @@ -22,7 +22,7 @@ spec: fsGroup: 1000 # Atlantis group (1000) read/write access to volumes. containers: - name: atlantis - image: ghcr.io/runatlantis/atlantis:v0.19.1 + image: ghcr.io/runatlantis/atlantis:v0.19.2 env: - name: ATLANTIS_DATA_DIR value: /atlantis diff --git a/main.go b/main.go index f8ce33827c..9a1a9c0bff 100644 --- a/main.go +++ b/main.go @@ -22,7 +22,7 @@ import ( "github.com/spf13/viper" ) -const atlantisVersion = "0.19.1" +const atlantisVersion = "0.19.2" func main() { v := viper.New()