Skip to content

Commit 71a76a2

Browse files
authored
Merge pull request #24 from runatlantis/release-0.3.1
Release 0.3.1
2 parents 6ef567f + e645674 commit 71a76a2

File tree

2 files changed

+17
-1
lines changed

2 files changed

+17
-1
lines changed

CHANGELOG.md

+16
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
# v0.3.1
2+
## Features
3+
* None
4+
5+
## Bug Fixes
6+
* Run apply in correct directory when using `-d` flag. Fixes ([#22](https://github.com/runatlantis/atlantis/issues/22))
7+
8+
## Backwards Incompatibilities / Notes:
9+
* None
10+
11+
## Downloads
12+
* [atlantis_darwin_amd64.zip](https://github.com/runatlantis/atlantis/releases/download/v0.3.1/atlantis_darwin_amd64.zip)
13+
* [atlantis_linux_386.zip](https://github.com/runatlantis/atlantis/releases/download/v0.3.1/atlantis_linux_386.zip)
14+
* [atlantis_linux_amd64.zip](https://github.com/runatlantis/atlantis/releases/download/v0.3.1/atlantis_linux_amd64.zip)
15+
* [atlantis_linux_arm.zip](https://github.com/runatlantis/atlantis/releases/download/v0.3.1/atlantis_linux_arm.zip)
16+
117
# v0.3.0
218
## Features
319
* Fix security issue where Atlantis wasn't escaping the optional "extra args" that could be appended to comments ([#16](https://github.com/runatlantis/atlantis/pull/16))

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.3.0")
11+
v.Set("version", "0.3.1")
1212

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

0 commit comments

Comments
 (0)