From cb018a5167a278cbfb1cf206ed70cae1be58e0b0 Mon Sep 17 00:00:00 2001 From: rui Date: Fri, 4 Mar 2022 15:33:14 -0500 Subject: [PATCH] release: 0.19.0 (#2115) Signed-off-by: Rui Chen update release notes Signed-off-by: Rui Chen --- CHANGELOG.md | 12 ++++++++++++ kustomize/bundle.yaml | 2 +- main.go | 2 +- 3 files changed, 14 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5f19bcd666..f559c006ed 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,15 @@ +# v0.19.0 + +Feature release for: +- multi-arch docker images +- add `pending` status for apply + +## What's Changed + +* docs: moving streaming logs section from top-level navigation to docs by @Aayyush in https://github.com/runatlantis/atlantis/pull/2066 +* fix(docker): Multi-arch Docker images, attempt two by @Tenzer in https://github.com/runatlantis/atlantis/pull/2114 +* feat: add a pending status for apply when running plan command by @AndreZiviani in https://github.com/runatlantis/atlantis/pull/2053 + # v0.18.5 Maintenance release: diff --git a/kustomize/bundle.yaml b/kustomize/bundle.yaml index 1cc46fe32d..800274a250 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.18.5 + image: ghcr.io/runatlantis/atlantis:v0.18.6 env: - name: ATLANTIS_DATA_DIR value: /atlantis diff --git a/main.go b/main.go index 8f071aafa5..53f527b081 100644 --- a/main.go +++ b/main.go @@ -22,7 +22,7 @@ import ( "github.com/spf13/viper" ) -const atlantisVersion = "0.18.5" +const atlantisVersion = "0.18.6" func main() { v := viper.New()