From 06da69c1e9ffde998dba326d6448c53351a1b7f8 Mon Sep 17 00:00:00 2001 From: Jonah Back Date: Thu, 29 Apr 2021 12:17:44 -0700 Subject: [PATCH] release 0.11.1 (#285) Signed-off-by: Jonah Back --- CHANGELOG.md | 5 +++++ README.md | 2 +- main.go | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index af9ce5bf..3c65a34a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,11 @@ 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.11.1-alpha2] - 2020-4-29 + +### Fixed + +- Only set restricted field to default value if none of the conditionals set it (#284) ## [v0.11.0-alpha2] - 2020-4-28 diff --git a/README.md b/README.md index ba930bed..abfd90ff 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ [![codecov](https://codecov.io/gh/keikoproj/instance-manager/branch/master/graph/badge.svg?token=IJbjmSBliL)](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.11.0-blue.svg?cacheSeconds=2592000) +![version](https://img.shields.io/badge/version-0.11.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 6af0b70d..56a7ca43 100644 --- a/main.go +++ b/main.go @@ -44,7 +44,7 @@ var ( setupLog = ctrl.Log.WithName("setup") ) -const controllerVersion = "instancemgr-0.11.0" +const controllerVersion = "instancemgr-0.11.1" func init() { instancemgrv1alpha1.AddToScheme(scheme)