From f4649b235d150d201ce103b29488aaa189de6cc5 Mon Sep 17 00:00:00 2001 From: "G. Hussain Chinoy" Date: Fri, 20 Apr 2018 15:48:14 -0600 Subject: [PATCH] v0.15.0 --- CHANGELOG.md | 4 +++- makedist | 2 +- version.go | 2 +- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a05d40c..35a1933 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,10 +6,12 @@ BUG FIXES: IMPROVEMENTS: -# v0.14.1 +# v0.15.0 NEW FEATURES: +* `instances delete` now takes either a list of IDs (1 or more) to delete multiple instances or the flag `--all` to delete all of them. Will provide an error if Element Instance is in use or not found. + BUG FIXES: * `molecules export` variants, continued fix to exporting raw JSON ([PR#51](https://github.com/ghchinoy/cectl/pull/51) diff --git a/makedist b/makedist index 0f9440e..0881fa8 100755 --- a/makedist +++ b/makedist @@ -5,7 +5,7 @@ # No need to change anything below #### # -VERSION=0.14.1 +VERSION=0.15.0 TOOLNAME=cectl OSLIST=(linux darwin windows) diff --git a/version.go b/version.go index 5c8db50..f5a3156 100644 --- a/version.go +++ b/version.go @@ -5,7 +5,7 @@ import ( ) const ( - version = "0.14.1" + version = "0.15.0" versionName = "stratocumulus" )