Skip to content

Commit 036b4c8

Browse files
authored
Release 0.2.3 (#234)
1 parent c54dd58 commit 036b4c8

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.2.4
2+
## Features
3+
* SSL support added ([#233](https://github.com/hootsuite/atlantis/pull/233))
4+
5+
## Bug Fixes
6+
* GitLab custom URL for GitLab Enterprise installations now works ([#231](https://github.com/hootsuite/atlantis/pull/231))
7+
8+
## Backwards Incompatibilities / Notes:
9+
None
10+
11+
## Downloads
12+
* [atlantis_darwin_amd64.zip](https://github.com/hootsuite/atlantis/releases/download/v0.2.4/atlantis_darwin_amd64.zip)
13+
* [atlantis_linux_386.zip](https://github.com/hootsuite/atlantis/releases/download/v0.2.4/atlantis_linux_386.zip)
14+
* [atlantis_linux_amd64.zip](https://github.com/hootsuite/atlantis/releases/download/v0.2.4/atlantis_linux_amd64.zip)
15+
* [atlantis_linux_arm.zip](https://github.com/hootsuite/atlantis/releases/download/v0.2.4/atlantis_linux_arm.zip)
16+
117
# v0.2.3
218
## Features
319
None

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