diff --git a/CHANGELOG.md b/CHANGELOG.md index 1fd73bb..dd8842a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,12 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p [Unreleased] ------------ +[1.0.7] - 2017-01-16 +-------------------- + +- Fixed crash due to concurrent read and write. +- CLI wouldn't exit when given bad flags. + [1.0.6] - 2016-10-13 -------------------- @@ -73,7 +79,8 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p - Everything! -[Unreleased]: https://github.com/docwhat/docker-gc/compare/1.0.6...HEAD +[Unreleased]: https://github.com/docwhat/docker-gc/compare/1.0.7...HEAD +[1.0.7]: https://github.com/docwhat/docker-gc/compare/1.0.6...1.0.7 [1.0.6]: https://github.com/docwhat/docker-gc/compare/1.0.5...1.0.6 [1.0.5]: https://github.com/docwhat/docker-gc/compare/1.0.4...1.0.5 [1.0.4]: https://github.com/docwhat/docker-gc/compare/1.0.3...1.0.4 diff --git a/release.dockerfile b/release.dockerfile index 6191c53..dc8a809 100644 --- a/release.dockerfile +++ b/release.dockerfile @@ -1,7 +1,7 @@ FROM busybox MAINTAINER Christian Höltje -ENV DOCKER_GC_VERSION 1.0.6 +ENV DOCKER_GC_VERSION 1.0.7 ENV COLUMNS 80 ADD ["https://github.com/docwhat/docker-gc/releases/download/${DOCKER_GC_VERSION}/docker-gc_linux_amd64", "/docker-gc"]