diff --git a/CHANGELOG.md b/CHANGELOG.md index 24fac1d10d..287df06cdb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,12 @@ +# v0.2.0 Release - 7/09/2018 + +New Features +* Support for adding different source contexts, including Amazon S3 [#195](https://github.com/GoogleContainerTools/kaniko/issues/195) +* Added --reproducible [#205](https://github.com/GoogleContainerTools/kaniko/pull/205) and --single-snapshot [#204](https://github.com/GoogleContainerTools/kaniko/pull/204) flags +* Documented running kaniko in gVisor [#194](https://github.com/GoogleContainerTools/kaniko/pull/194) +* Update go-containerregistry so kaniko works better with Harbor and Gitlab[#227](https://github.com/GoogleContainerTools/kaniko/pull/227) +* Push image to multiple destinations [#184](https://github.com/GoogleContainerTools/kaniko/pull/184) + # v0.1.0 Release - 5/17/2018 New Features diff --git a/Makefile b/Makefile index a00b2d386a..0aa4b627a4 100644 --- a/Makefile +++ b/Makefile @@ -14,7 +14,7 @@ # Bump these on release VERSION_MAJOR ?= 0 -VERSION_MINOR ?= 1 +VERSION_MINOR ?= 2 VERSION_BUILD ?= 0 VERSION ?= v$(VERSION_MAJOR).$(VERSION_MINOR).$(VERSION_BUILD)