diff --git a/CHANGELOG.md b/CHANGELOG.md index f7121cc6..ebd2c4b1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,17 @@ # container-diff Release Notes +# Version 0.14.0 - 12/18/18 +* Enhancement - save to file [#279](https://github.com/GoogleContainerTools/container-diff/pull/279) +* Fixed concurrent map write in image diffing [#278](https://github.com/GoogleContainerTools/container-diff/pull/278) +* Adding custom cache envar and command line argument [#274](https://github.com/GoogleContainerTools/container-diff/pull/274) +* Split lines prior to diffing [#272](https://github.com/GoogleContainerTools/container-diff/pull/272) +* Move all image processing logic into utils, and expose publically [#270](https://github.com/GoogleContainerTools/container-diff/pull/270) +* Enhancement - save to file [#279](https://github.com/GoogleContainerTools/container-diff/pull/279) +* Fixed concurrent map write in image diffing [#278](https://github.com/GoogleContainerTools/container-diff/pull/278) +* Adding custom cache envar and command line argument [#274](https://github.com/GoogleContainerTools/container-diff/pull/274) +* Split lines prior to diffing [#272](https://github.com/GoogleContainerTools/container-diff/pull/272) +* Move all image processing logic into utils, and expose publically [#270](https://github.com/GoogleContainerTools/container-diff/pull/270) + # Version 0.13.0 - 10/30/18 * Update go-containerregistry to pick up docker API client negotiation [#267](https://github.com/GoogleContainerTools/container-diff/pull/267) * Fix unintended variable shadowing [#263](https://github.com/GoogleContainerTools/container-diff/pull/263) diff --git a/Makefile b/Makefile index 5af5340b..67ab41d3 100644 --- a/Makefile +++ b/Makefile @@ -14,7 +14,7 @@ # Bump these on release VERSION_MAJOR ?= 0 -VERSION_MINOR ?= 13 +VERSION_MINOR ?= 14 VERSION_BUILD ?= 0 VERSION ?= v$(VERSION_MAJOR).$(VERSION_MINOR).$(VERSION_BUILD)