diff --git a/CHANGELOG.md b/CHANGELOG.md index e07cbe06..2dd19ae6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,14 @@ 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.13.0-alpha2] - 2021-7-21 +- feat: add support for specifying container runtime (#323) +- fix: calculate cluster dns correctly for non /16 blocks (#319) +- fix: add throughput parameter for volumes, allow iops to be set for any provisioned iops-supported volume (#316) +- fix: add addl tags for scale to 0 support for windows nodes (#315) +- fix: evaluate controller-added tags (#314) +- feat: Pass API Endpoint & CA Cert directly to bootstrap + ## [v0.12.1-alpha2] - 2021-6-4 - fix: Set InstanceTypes before provisioned early exit (#312) - refactor: awsprovider file restructure (#296) diff --git a/README.md b/README.md index 45b0b870..65800097 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.12.1-blue.svg?cacheSeconds=2592000) +![version](https://img.shields.io/badge/version-0.13.0-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 5c0153e7..caaa63bc 100644 --- a/main.go +++ b/main.go @@ -44,7 +44,7 @@ var ( setupLog = ctrl.Log.WithName("setup") ) -const controllerVersion = "instancemgr-0.12.1" +const controllerVersion = "instancemgr-0.13.0" func init() { instancemgrv1alpha1.AddToScheme(scheme)