Skip to content

Commit 652998c

Browse files
authored
Merge pull request #213 from hootsuite/release-0.2.1
Update for 0.2.1
2 parents ac1b100 + 1d8370e commit 652998c

File tree

3 files changed

+19
-3
lines changed

3 files changed

+19
-3
lines changed

CHANGELOG.md

+16
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
# v0.2.1
2+
## Features
3+
* Don't ignore changes in `modules` directories anymore. ([#211](https://github.com/hootsuite/atlantis/pull/211))
4+
5+
## Bug Fixes
6+
* Don't set `as_user` to true for Slack webhooks so we can integrate as a workspace app. ([#206](https://github.com/hootsuite/atlantis/pull/206))
7+
8+
## Downloads
9+
* [atlantis_darwin_amd64.zip](https://github.com/hootsuite/atlantis/releases/download/v0.2.1/atlantis_darwin_amd64.zip)
10+
* [atlantis_linux_386.zip](https://github.com/hootsuite/atlantis/releases/download/v0.2.1/atlantis_linux_386.zip)
11+
* [atlantis_linux_amd64.zip](https://github.com/hootsuite/atlantis/releases/download/v0.2.1/atlantis_linux_amd64.zip)
12+
* [atlantis_linux_arm.zip](https://github.com/hootsuite/atlantis/releases/download/v0.2.1/atlantis_linux_arm.zip)
13+
14+
## Backwards Incompatibilities / Notes:
15+
None
16+
117
# v0.2.0
218
## Features
319
* GitLab is now supported! ([#190](https://github.com/hootsuite/atlantis/pull/190))

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.0")
11+
v.Set("version", "0.2.1")
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

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ <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.0">Download</a> <a
12+
<a class="button primary big" href="https://github.com/hootsuite/atlantis/releases/tag/v0.2.1">Download</a> <a
1313
class="button outline big" href="https://github.com/hootsuite/atlantis#getting-started">Get Started</a>
14-
<p>Version 0.2.0</p>
14+
<p>Version 0.2.1</p>
1515
</div>
1616
<div id="kube-features">
1717
<div class="row gutters">

0 commit comments

Comments
 (0)