diff --git a/CHANGELOG.md b/CHANGELOG.md index 4407509a..d5cc67cc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,19 @@ +# v0.2.4 +## Features +* SSL support added ([#233](https://github.com/hootsuite/atlantis/pull/233)) + +## Bug Fixes +* GitLab custom URL for GitLab Enterprise installations now works ([#231](https://github.com/hootsuite/atlantis/pull/231)) + +## Backwards Incompatibilities / Notes: +None + +## Downloads +* [atlantis_darwin_amd64.zip](https://github.com/hootsuite/atlantis/releases/download/v0.2.4/atlantis_darwin_amd64.zip) +* [atlantis_linux_386.zip](https://github.com/hootsuite/atlantis/releases/download/v0.2.4/atlantis_linux_386.zip) +* [atlantis_linux_amd64.zip](https://github.com/hootsuite/atlantis/releases/download/v0.2.4/atlantis_linux_amd64.zip) +* [atlantis_linux_arm.zip](https://github.com/hootsuite/atlantis/releases/download/v0.2.4/atlantis_linux_arm.zip) + # v0.2.3 ## Features None diff --git a/main.go b/main.go index 42bc26d5..7545b0c9 100644 --- a/main.go +++ b/main.go @@ -8,7 +8,7 @@ import ( func main() { v := viper.New() - v.Set("version", "0.2.3") + v.Set("version", "0.2.4") // We're creating commands manually here rather than using init() functions // (as recommended by cobra) because it makes testing easier.