diff --git a/CHANGELOG.md b/CHANGELOG.md index 1b727e926..b214ad85f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## 1.19.0 +* 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) 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