From 0a6ec1f611f5bae38b91dfde21d48261e0cba5ec Mon Sep 17 00:00:00 2001 From: John Pignata Date: Fri, 19 Jan 2018 22:17:46 -0500 Subject: [PATCH] Bump version to 0.2.3 --- CHANGELOG.md | 19 +++++++++++++++++++ cmd/root.go | 2 +- 2 files changed, 20 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7bcfa8c..1b8b316 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,20 @@ +## 0.2.3 (2018-01-19) + +### Features + +- Support**--task-role** flag in service create and task run to allow passing + a role name for the tasks to assume. ([#8][issue-8]) + +### Enhancements + +- Use the `ForceNewDeployment` feature of `UpdateService` in service restart + instead of incrementing the task definition. ([#14][issue-14]) + +### Bug Fixes + +- Fixed issue where we'd stomp on an existing task role on service updates like + deployments or environment variable changes. ([#8][issue-8]) + ## 0.2.2 (2018-01-11) ### Bug Fixes @@ -44,4 +61,6 @@ [issue-2]: https://github.com/jpignata/fargate/issues/2 [issue-6]: https://github.com/jpignata/fargate/issues/6 +[issue-8]: https://github.com/jpignata/fargate/issues/8 [issue-11]: https://github.com/jpignata/fargate/issues/11 +[issue-14]: https://github.com/jpignata/fargate/issues/14 diff --git a/cmd/root.go b/cmd/root.go index 7f69264..1995e19 100644 --- a/cmd/root.go +++ b/cmd/root.go @@ -16,7 +16,7 @@ import ( ) const ( - version = "0.2.2" + version = "0.2.3" defaultClusterName = "fargate" defaultRegion = "us-east-1"