From 35b82c84b141105df00f9a5cf2d8394ac758069a Mon Sep 17 00:00:00 2001 From: Austin Ely Date: Wed, 20 May 2020 16:05:56 -0700 Subject: [PATCH 1/5] release notes in changelog --- CHANGELOG.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1b727e926..df853d8b8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## 1.19.0 +* Bug - correctly parse secret names when name includes nested slashes (#1012) +* Bug - fixed a bug where valid instance types were rejected by CFN (#1007) +* Enhancement - add documentation for homebrew installation (#1015) +* Feature - enable EFS volume configuration in ecs-params (#1019) +* Feature - enable multiple target groups attached to a single service (#1013) ## 1.18.1 * Bug - Correctly parse value specified in --tags flag (#959) * Bug - `compose up` now only makes one API call, reducing errors caused by a race condition (#988) From 0f7209277337e3e7b16e05e9e9472ca77765ea6a Mon Sep 17 00:00:00 2001 From: Austin Ely Date: Wed, 20 May 2020 16:06:53 -0700 Subject: [PATCH 2/5] Bump version --- VERSION | 2 +- ecs-cli/modules/version/version.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/VERSION b/VERSION index ec6d649be..c1af674ec 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.18.1 +1.19.0 \ No newline at end of file diff --git a/ecs-cli/modules/version/version.go b/ecs-cli/modules/version/version.go index bfcbf8dd9..0d7585088 100644 --- a/ecs-cli/modules/version/version.go +++ b/ecs-cli/modules/version/version.go @@ -22,7 +22,7 @@ package version // repository. Only the 'Version' const should change in checked-in source code // Version is the version of the ECS CLI -const Version = "1.18.1" +const Version = "1.19.0" // GitDirty indicates the cleanliness of the git repo when this ecs-cli was built const GitDirty = true From 42c7bb791ddfbc2a3fb861824d7f05e23f086e44 Mon Sep 17 00:00:00 2001 From: Austin Ely Date: Thu, 21 May 2020 10:19:52 -0700 Subject: [PATCH 3/5] Rephrase and capitalize --- CHANGELOG.md | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index df853d8b8..79264ebbc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,11 +1,13 @@ # Changelog ## 1.19.0 -* Bug - correctly parse secret names when name includes nested slashes (#1012) -* Bug - fixed a bug where valid instance types were rejected by CFN (#1007) -* Enhancement - add documentation for homebrew installation (#1015) -* Feature - enable EFS volume configuration in ecs-params (#1019) -* Feature - enable multiple target groups attached to a single service (#1013) +* Feature - Add support for EFS volume configuration in ecs-params (#1019) +* Feature - Add support for multiple target groups attached to a single service (#1013) +* Bug - Correctly parse secret names when name includes nested slashes (#1012) +* Bug - Fix a bug where valid instance types were rejected by CFN (#1007) +* Enhancement - Add documentation for homebrew installation (#1015) + + ## 1.18.1 * Bug - Correctly parse value specified in --tags flag (#959) * Bug - `compose up` now only makes one API call, reducing errors caused by a race condition (#988) From b7f71f054d5cc59ab64665c67117948658129d2c Mon Sep 17 00:00:00 2001 From: Austin Ely Date: Thu, 21 May 2020 10:20:59 -0700 Subject: [PATCH 4/5] Remove extra newline --- CHANGELOG.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 79264ebbc..1a3c7fe2e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,8 +6,6 @@ * Bug - Correctly parse secret names when name includes nested slashes (#1012) * Bug - Fix a bug where valid instance types were rejected by CFN (#1007) * Enhancement - Add documentation for homebrew installation (#1015) - - ## 1.18.1 * Bug - Correctly parse value specified in --tags flag (#959) * Bug - `compose up` now only makes one API call, reducing errors caused by a race condition (#988) From 42b44ca9d82274419a5894136bbf7e7cb81a0b9d Mon Sep 17 00:00:00 2001 From: Austin Ely Date: Thu, 21 May 2020 10:22:22 -0700 Subject: [PATCH 5/5] Extra line --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1a3c7fe2e..b214ad85f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,7 @@ * Bug - Correctly parse secret names when name includes nested slashes (#1012) * Bug - Fix a bug where valid instance types were rejected by CFN (#1007) * Enhancement - Add documentation for homebrew installation (#1015) + ## 1.18.1 * Bug - Correctly parse value specified in --tags flag (#959) * Bug - `compose up` now only makes one API call, reducing errors caused by a race condition (#988)