Merge pull request #648 from runatlantis/release-0.8

Release 0.8
This commit is contained in:
Luke Kysow
2019-05-23 13:31:02 -04:00
committed by GitHub
2 changed files with 34 additions and 1 deletions

View File

@@ -1,3 +1,35 @@
# v0.8.0
## Description
This release upgrades the default version of Terraform to 0.12.
If you're running Atlantis with the `--default-tf-version` flag set (which
you always should) then this won't affect you at all.
## Features
* Upgrade default Terraform version to 0.12
* Add new `--disable-apply-all` flag that disables running `atlantis apply`
without any flags. ([#645](https://github.com/runatlantis/atlantis/pull/645))
## Bugfixes
None
## 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. Simply set the above
flag to your desired default version of Terraform and 0.12 won't be used.
## Downloads
* [atlantis_darwin_amd64.zip](https://github.com/runatlantis/atlantis/releases/download/v0.8.0/atlantis_darwin_amd64.zip)
* [atlantis_linux_386.zip](https://github.com/runatlantis/atlantis/releases/download/v0.8.0/atlantis_linux_386.zip)
* [atlantis_linux_amd64.zip](https://github.com/runatlantis/atlantis/releases/download/v0.8.0/atlantis_linux_amd64.zip)
* [atlantis_linux_arm.zip](https://github.com/runatlantis/atlantis/releases/download/v0.8.0/atlantis_linux_arm.zip)
## Docker
[`runatlantis/atlantis:v0.8.0`](https://hub.docker.com/r/runatlantis/atlantis/tags/)
## Diff v0.7.2..v0.8.0
https://github.com/runatlantis/atlantis/compare/v0.7.2...v0.8.0
# v0.7.2
## Description
@@ -25,6 +57,7 @@ None
## Diff v0.7.1..v0.7.2
https://github.com/runatlantis/atlantis/compare/v0.7.1...v0.7.2
# v0.7.1
## Description

View File

@@ -20,7 +20,7 @@ import (
"github.com/spf13/viper"
)
const atlantisVersion = "0.7.2"
const atlantisVersion = "0.8.0"
func main() {
v := viper.New()