diff --git a/CHANGELOG.md b/CHANGELOG.md index 7d83916c5..9b5bfd5b4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,17 @@ +# v0.7.0 Release - 12/10/2018 + +## New Features +* Add support for COPY --from an unrelated image + +## Updates +* Speed up snapshotting by using filepath.SkipDir +* Improve layer cache upload performance +* Skip unpacking the base image in certain cases + +## Bug Fixes +* Fix bug with call loop +* Fix caching for multi-step builds + # v0.6.0 Release - 11/06/2018 ## New Features diff --git a/Makefile b/Makefile index 36bd5a190..e12bb2b18 100644 --- a/Makefile +++ b/Makefile @@ -14,7 +14,7 @@ # Bump these on release VERSION_MAJOR ?= 0 -VERSION_MINOR ?= 6 +VERSION_MINOR ?= 7 VERSION_BUILD ?= 0 VERSION ?= v$(VERSION_MAJOR).$(VERSION_MINOR).$(VERSION_BUILD)