diff --git a/CHANGELOG.md b/CHANGELOG.md index 141378550..56b09aef3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +# v0.22.1 + +Bugfixes and new Features + +## What's Changed + +https://github.com/runatlantis/atlantis/releases/tag/v0.22.1 + # v0.22.0 Bugfixes and new Features diff --git a/kustomize/bundle.yaml b/kustomize/bundle.yaml index f57e17062..b58071cc7 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.22.0 + image: ghcr.io/runatlantis/atlantis:v0.22.1 env: - name: ATLANTIS_DATA_DIR value: /atlantis diff --git a/main.go b/main.go index f54d68b85..e85dff1de 100644 --- a/main.go +++ b/main.go @@ -24,7 +24,7 @@ import ( "github.com/spf13/viper" ) -const atlantisVersion = "0.22.0" +const atlantisVersion = "0.22.1" func main() { v := viper.New()