diff --git a/.github/CHANGELOG.md b/.github/CHANGELOG.md index cec35622..928ac79f 100644 --- a/.github/CHANGELOG.md +++ b/.github/CHANGELOG.md @@ -1,6 +1,16 @@ # Change Log All notable changes to this project will be documented in this file. +## [v0.15] - 2020-11-12 + +* Extract script runner to a separate type; fix work with env. variables (#132) +* Fix bug when switching to launch templates (#136) +* During upgrade, ignore terminated instance. (#134) +* Readiness gates implementation for eager mode (#130) +* Fix few typos and simplify error returns, remove redundant types (#131) +* Upgrade to Go 1.15 (#128) +* Fix typo in README.md. (#125) + ## [v0.14] - 2020-09-23 * Terminate unjoined nodes (#120) diff --git a/Makefile b/Makefile index de826f60..754b3b7c 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -VERSION=0.15-dev +VERSION=0.15 # Image URL to use all building/pushing image targets IMG ?= keikoproj/rolling-upgrade-controller:${VERSION} # Produce CRDs that work back to Kubernetes 1.11 (no version conversion) diff --git a/config/default/manager_image_patch.yaml b/config/default/manager_image_patch.yaml index ff856c5b..a97b60e9 100644 --- a/config/default/manager_image_patch.yaml +++ b/config/default/manager_image_patch.yaml @@ -8,5 +8,5 @@ spec: spec: containers: # Change the value of image field below to your controller image URL - - image: keikoproj/rolling-upgrade-controller:0.15-dev + - image: keikoproj/rolling-upgrade-controller:0.15 name: manager