diff --git a/CHANGELOG.md b/CHANGELOG.md index 9d339c0c38..25a787058b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,33 @@ +# v0.8.2 + +## Description +Small bugfix release for Bitbucket Cloud users running with "require mergeable". + +## Features +* Update default Terraform version to 0.12.1. +* Include directory in Slack message ([#660](https://github.com/runatlantis/atlantis/issues/660)). + +## Bugfixes +* Atlantis would consider all pull requests as not mergeable due to an API change. + (Fixes [#672](https://github.com/runatlantis/atlantis/issues/672)) + +## Backwards Incompatibilities / Notes: +* If you're using the Atlantis Docker image and aren't setting the `--default-tf-version` flag + then the default version of Terraform will now be 0.12.1. Simply set the above + flag to your desired default version to avoid any issues. + +## Downloads +* [atlantis_darwin_amd64.zip](https://github.com/runatlantis/atlantis/releases/download/v0.8.2/atlantis_darwin_amd64.zip) +* [atlantis_linux_386.zip](https://github.com/runatlantis/atlantis/releases/download/v0.8.2/atlantis_linux_386.zip) +* [atlantis_linux_amd64.zip](https://github.com/runatlantis/atlantis/releases/download/v0.8.2/atlantis_linux_amd64.zip) +* [atlantis_linux_arm.zip](https://github.com/runatlantis/atlantis/releases/download/v0.8.2/atlantis_linux_arm.zip) + +## Docker +[`runatlantis/atlantis:v0.8.2`](https://hub.docker.com/r/runatlantis/atlantis/tags/) + +## Diff v0.8.1..v0.8.2 +https://github.com/runatlantis/atlantis/compare/v0.8.1...v0.8.2 + # v0.8.1 ## Description diff --git a/main.go b/main.go index 78cc3fd040..396bcfa131 100644 --- a/main.go +++ b/main.go @@ -20,7 +20,7 @@ import ( "github.com/spf13/viper" ) -const atlantisVersion = "0.8.1" +const atlantisVersion = "0.8.2" func main() { v := viper.New()