File tree 5 files changed +25
-6
lines changed
website/src/themes/kube/layouts
5 files changed +25
-6
lines changed Original file line number Diff line number Diff line change
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
+
1
22
# v0.2.1
2
23
## Features
3
24
* Don't ignore changes in ` modules ` directories anymore. ([ #211 ] ( https://github.com/hootsuite/atlantis/pull/211 ) )
Original file line number Diff line number Diff line change @@ -90,7 +90,6 @@ func TestLockingExisting(t *testing.T) {
90
90
# Creating a New Release
91
91
1. Update version number in
92
92
1. ` main.go `
93
- 1. ` website/src/themes/kube/layouts/index.html `
94
93
1. Update ` CHANGELOG.md ` with latest release number and information
95
94
1. Create a pull request and merge to master
96
95
1. Run ` make release`
Original file line number Diff line number Diff line change @@ -28,9 +28,9 @@ RUN apk add --no-cache ca-certificates gnupg curl git unzip bash openssh libcap
28
28
rm -rf /root/.gnupg && rm -rf /var/cache/apk/*
29
29
30
30
# install terraform binaries
31
- ENV DEFAULT_TERRAFORM_VERSION=0.10.8
31
+ ENV DEFAULT_TERRAFORM_VERSION=0.11.1
32
32
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 " && \
34
34
for VERSION in ${AVAILABLE_TERRAFORM_VERSIONS}; do curl -LOk https://releases.hashicorp.com/terraform/${VERSION}/terraform_${VERSION}_linux_amd64.zip && \
35
35
mkdir -p /usr/local/bin/tf/versions/${VERSION} && \
36
36
unzip terraform_${VERSION}_linux_amd64.zip -d /usr/local/bin/tf/versions/${VERSION} && \
Original file line number Diff line number Diff line change 8
8
9
9
func main () {
10
10
v := viper .New ()
11
- v .Set ("version" , "0.2.1 " )
11
+ v .Set ("version" , "0.2.2 " )
12
12
13
13
// We're creating commands manually here rather than using init() functions
14
14
// (as recommended by cobra) because it makes testing easier.
Original file line number Diff line number Diff line change @@ -9,9 +9,8 @@ <h1>{{.Title}}</h1>
9
9
< p > {{.Description}}</ p >
10
10
</ div >
11
11
< 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
13
13
class ="button outline big " href ="https://github.com/hootsuite/atlantis#getting-started "> Get Started</ a >
14
- < p > Version 0.2.1</ p >
15
14
</ div >
16
15
< div id ="kube-features ">
17
16
< div class ="row gutters ">
You can’t perform that action at this time.
0 commit comments