Skip to content

Commit b655afa

Browse files
authored
Merge pull request #221 from hootsuite/release-0.2.2
Release version 0.2.2
2 parents a9ada64 + 9c11841 commit b655afa

File tree

5 files changed

+25
-6
lines changed

5 files changed

+25
-6
lines changed

CHANGELOG.md

+21
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,24 @@
1+
# v0.2.2
2+
## Features
3+
* Terraform 0.11 is now supported ([#219](https://github.com/hootsuite/atlantis/pull/219))
4+
5+
## Bug Fixes
6+
None
7+
8+
## Backwards Incompatibilities / Notes:
9+
* The environment variables available when executing commands have changed:
10+
* `WORKSPACE` => `DIR` - this is the absolute path to the project directory on disk
11+
* `ENVIRONMENT` => `WORKSPACE` - this is the name of the Terraform workspace that we're running in (ex. default)
12+
* The schema for storing locks changed. Any old locks will still be held but you will be unable to discard them in the UI.
13+
**To fix this, either merge all the open pull requests before upgrading OR delete the `~/.atlantis/atlantis.db` file.**
14+
This is safe to do because you'll just need to re-run `plan` to get your plan back.
15+
16+
## Downloads
17+
* [atlantis_darwin_amd64.zip](https://github.com/hootsuite/atlantis/releases/download/v0.2.2/atlantis_darwin_amd64.zip)
18+
* [atlantis_linux_386.zip](https://github.com/hootsuite/atlantis/releases/download/v0.2.2/atlantis_linux_386.zip)
19+
* [atlantis_linux_amd64.zip](https://github.com/hootsuite/atlantis/releases/download/v0.2.2/atlantis_linux_amd64.zip)
20+
* [atlantis_linux_arm.zip](https://github.com/hootsuite/atlantis/releases/download/v0.2.2/atlantis_linux_arm.zip)
21+
122
# v0.2.1
223
## Features
324
* Don't ignore changes in `modules` directories anymore. ([#211](https://github.com/hootsuite/atlantis/pull/211))

CONTRIBUTING.md

-1
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,6 @@ func TestLockingExisting(t *testing.T) {
9090
# Creating a New Release
9191
1. Update version number in
9292
1. `main.go`
93-
1. `website/src/themes/kube/layouts/index.html`
9493
1. Update `CHANGELOG.md` with latest release number and information
9594
1. Create a pull request and merge to master
9695
1. Run `make release`

Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,9 @@ RUN apk add --no-cache ca-certificates gnupg curl git unzip bash openssh libcap
2828
rm -rf /root/.gnupg && rm -rf /var/cache/apk/*
2929

3030
# install terraform binaries
31-
ENV DEFAULT_TERRAFORM_VERSION=0.10.8
31+
ENV DEFAULT_TERRAFORM_VERSION=0.11.1
3232

33-
RUN AVAILABLE_TERRAFORM_VERSIONS="0.8.8 0.9.11 0.10.8" && \
33+
RUN AVAILABLE_TERRAFORM_VERSIONS="0.8.8 0.9.11 0.10.8 0.11.1" && \
3434
for VERSION in ${AVAILABLE_TERRAFORM_VERSIONS}; do curl -LOk https://releases.hashicorp.com/terraform/${VERSION}/terraform_${VERSION}_linux_amd64.zip && \
3535
mkdir -p /usr/local/bin/tf/versions/${VERSION} && \
3636
unzip terraform_${VERSION}_linux_amd64.zip -d /usr/local/bin/tf/versions/${VERSION} && \

main.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88

99
func main() {
1010
v := viper.New()
11-
v.Set("version", "0.2.1")
11+
v.Set("version", "0.2.2")
1212

1313
// We're creating commands manually here rather than using init() functions
1414
// (as recommended by cobra) because it makes testing easier.

website/src/themes/kube/layouts/index.html

+1-2
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,8 @@ <h1>{{.Title}}</h1>
99
<p>{{.Description}}</p>
1010
</div>
1111
<div id="action-buttons">
12-
<a class="button primary big" href="https://github.com/hootsuite/atlantis/releases/tag/v0.2.1">Download</a> <a
12+
<a class="button primary big" href="https://github.com/hootsuite/atlantis/releases/latest">Download</a> <a
1313
class="button outline big" href="https://github.com/hootsuite/atlantis#getting-started">Get Started</a>
14-
<p>Version 0.2.1</p>
1514
</div>
1615
<div id="kube-features">
1716
<div class="row gutters">

0 commit comments

Comments
 (0)