From 7a0bd113989fbcfae255a210109ee85c032e2a01 Mon Sep 17 00:00:00 2001 From: Paul Maddox Date: Thu, 14 Mar 2019 08:55:58 +0400 Subject: [PATCH] Bumped version to v0.3.0 --- CHANGELOG.md | 6 +++++- cmd/root.go | 2 +- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 78a1b7a..f548337 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -## 0.3.0 (Unreleased) +## 0.3.0 (2019-03-14) ### Enhancements @@ -7,6 +7,10 @@ with --no-emoji if you're not into fun - Requests and responses from AWS are displayed in full when --verbose is passed +- Added additional AWS Fargate regions +- Added --task-command flag to allow overriding of the Docker command used by the container +- If you have a region set in your AWS credentials, use that by default and only fall back to us-east-1 if no region is set +- Added --assign-public-ip boolean flag, which allows you to control whether a task has a public IP address (default: true) ### Bug Fixes diff --git a/cmd/root.go b/cmd/root.go index d5127fe..e7dc9f5 100644 --- a/cmd/root.go +++ b/cmd/root.go @@ -17,7 +17,7 @@ import ( ) const ( - version = "0.2.4" + version = "0.3.0" defaultClusterName = "fargate" defaultRegion = "us-east-1"