Skip to content

Commit

Permalink
Merge pull request #221 from hootsuite/release-0.2.2
Browse files Browse the repository at this point in the history
Release version 0.2.2
  • Loading branch information
lkysow committed Dec 18, 2017
2 parents a9ada64 + 9c11841 commit b655afa
Show file tree
Hide file tree
Showing 5 changed files with 25 additions and 6 deletions.
21 changes: 21 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,24 @@
# v0.2.2
## Features
* Terraform 0.11 is now supported ([#219](https://github.com/hootsuite/atlantis/pull/219))

## Bug Fixes
None

## Backwards Incompatibilities / Notes:
* The environment variables available when executing commands have changed:
* `WORKSPACE` => `DIR` - this is the absolute path to the project directory on disk
* `ENVIRONMENT` => `WORKSPACE` - this is the name of the Terraform workspace that we're running in (ex. default)
* The schema for storing locks changed. Any old locks will still be held but you will be unable to discard them in the UI.
**To fix this, either merge all the open pull requests before upgrading OR delete the `~/.atlantis/atlantis.db` file.**
This is safe to do because you'll just need to re-run `plan` to get your plan back.

## Downloads
* [atlantis_darwin_amd64.zip](https://github.com/hootsuite/atlantis/releases/download/v0.2.2/atlantis_darwin_amd64.zip)
* [atlantis_linux_386.zip](https://github.com/hootsuite/atlantis/releases/download/v0.2.2/atlantis_linux_386.zip)
* [atlantis_linux_amd64.zip](https://github.com/hootsuite/atlantis/releases/download/v0.2.2/atlantis_linux_amd64.zip)
* [atlantis_linux_arm.zip](https://github.com/hootsuite/atlantis/releases/download/v0.2.2/atlantis_linux_arm.zip)

# v0.2.1
## Features
* Don't ignore changes in `modules` directories anymore. ([#211](https://github.com/hootsuite/atlantis/pull/211))
Expand Down
1 change: 0 additions & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,6 @@ func TestLockingExisting(t *testing.T) {
# Creating a New Release
1. Update version number in
1. `main.go`
1. `website/src/themes/kube/layouts/index.html`
1. Update `CHANGELOG.md` with latest release number and information
1. Create a pull request and merge to master
1. Run `make release`
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@ RUN apk add --no-cache ca-certificates gnupg curl git unzip bash openssh libcap
rm -rf /root/.gnupg && rm -rf /var/cache/apk/*

# install terraform binaries
ENV DEFAULT_TERRAFORM_VERSION=0.10.8
ENV DEFAULT_TERRAFORM_VERSION=0.11.1

RUN AVAILABLE_TERRAFORM_VERSIONS="0.8.8 0.9.11 0.10.8" && \
RUN AVAILABLE_TERRAFORM_VERSIONS="0.8.8 0.9.11 0.10.8 0.11.1" && \
for VERSION in ${AVAILABLE_TERRAFORM_VERSIONS}; do curl -LOk https://releases.hashicorp.com/terraform/${VERSION}/terraform_${VERSION}_linux_amd64.zip && \
mkdir -p /usr/local/bin/tf/versions/${VERSION} && \
unzip terraform_${VERSION}_linux_amd64.zip -d /usr/local/bin/tf/versions/${VERSION} && \
Expand Down
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (

func main() {
v := viper.New()
v.Set("version", "0.2.1")
v.Set("version", "0.2.2")

// We're creating commands manually here rather than using init() functions
// (as recommended by cobra) because it makes testing easier.
Expand Down
3 changes: 1 addition & 2 deletions website/src/themes/kube/layouts/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,8 @@ <h1>{{.Title}}</h1>
<p>{{.Description}}</p>
</div>
<div id="action-buttons">
<a class="button primary big" href="https://github.com/hootsuite/atlantis/releases/tag/v0.2.1">Download</a> <a
<a class="button primary big" href="https://github.com/hootsuite/atlantis/releases/latest">Download</a> <a
class="button outline big" href="https://github.com/hootsuite/atlantis#getting-started">Get Started</a>
<p>Version 0.2.1</p>
</div>
<div id="kube-features">
<div class="row gutters">
Expand Down

0 comments on commit b655afa

Please sign in to comment.