From cac21569b1d1fa2cbacf498a299b1ff4a2fbfef2 Mon Sep 17 00:00:00 2001 From: Luke Kysow <1034429+lkysow@users.noreply.github.com> Date: Wed, 12 Jun 2019 12:33:47 +0100 Subject: [PATCH] Release 0.8.2 --- CHANGELOG.md | 30 ++++++++++++++++++++++++++++++ main.go | 2 +- 2 files changed, 31 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9d339c0c3..af8865b68 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 not allow applies for all Bitbucket Cloud pull requests if running with "require mergeable" + even if the pull request *was* 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 78cc3fd04..396bcfa13 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()