From f4d64e1577652e11091652948f8afc3e904fbfc9 Mon Sep 17 00:00:00 2001 From: Patricio Cano Date: Mon, 7 May 2018 16:43:00 -0500 Subject: [PATCH] Add v0.6.0 to CHANGELOG [ci skip] --- CHANGELOG.md | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 534c4aed..dd066da7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,24 @@ + +### v0.6.0 (2018-05-07) + +#### Features + +* Added support for S3 compatible object storage to store build artifacts. See the [documentation](doc/README.md#configuration) + for instructions on how to set it up. Most S3 compatible services, like AWS S3, Digital Ocean Spaces, Minio, etc. should work. +* Improved runner ENV variables for better Coveralls support + +#### Bug Fixes + +* Fixed small bug on the `ArtifactSweeper` GenServer. The server state was not being returned, which caused + intermittent errors on subsequent runs (one would work, the next one would error out, the next one would work, etc.) +* Properly populate the `$CI_COMMIT_REF_SLUG` environment variable with the shorthand for the branch/tag name + +#### Chores + +* Updated dependencies +* Cleaned up data structures code + - Replaced use of `use AlloyCi.Web :schema` with proper `Ecto` imports + ### v0.5.0 (2018-03-30)