diff --git a/CHANGELOG.md b/CHANGELOG.md index 8c88a316..7e6f9631 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,13 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/). +## [v0.9.1-alpha2] - 2020-11-17 + +### Fixed + +- rollingUpdate does not trigger an upgrade when using LaunchTemplate (#200) +- Handle length exceeded error for IAM role creation (#202) + ## [v0.9.0-alpha2] - 2020-11-13 ### Added diff --git a/README.md b/README.md index 69d3f1f8..87e36ffa 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ [![codecov](https://codecov.io/gh/keikoproj/instance-manager/branch/master/graph/badge.svg)](https://codecov.io/gh/keikoproj/instance-manager) [![Go Report Card](https://goreportcard.com/badge/github.com/keikoproj/instance-manager)](https://goreportcard.com/report/github.com/keikoproj/instance-manager) [![slack](https://img.shields.io/badge/slack-join%20the%20conversation-ff69b4.svg)][SlackUrl] -![version](https://img.shields.io/badge/version-0.9.0-blue.svg?cacheSeconds=2592000) +![version](https://img.shields.io/badge/version-0.9.1-blue.svg?cacheSeconds=2592000) > Create and manage instance groups with Kubernetes. **instance-manager** simplifies the creation of worker nodes from within a Kubernetes cluster and creates `InstanceGroup` objects in your cluster. Additionally, **instance-manager** will provision the actual machines and bootstrap them to the cluster. diff --git a/main.go b/main.go index af1a565d..72c6c5cd 100644 --- a/main.go +++ b/main.go @@ -40,7 +40,7 @@ var ( setupLog = ctrl.Log.WithName("setup") ) -const controllerVersion = "instancemgr-0.9.0" +const controllerVersion = "instancemgr-0.9.1" func init() { instancemgrv1alpha1.AddToScheme(scheme)