diff --git a/CHANGELOG.md b/CHANGELOG.md index b6908eb8c..c86f5d068 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Changelog +## 1.13.1 +* Bug - Fix `ecs-cli up` so that container instances with tags successfully join cluster (#744) + ## 1.13.0 * Feature - Add support for specifying Scheduling Strategy on `compose service create` and `up` (#540) * Feature - Add `check-attributes` command to verify that task definition requirements are present on a set of container instances (#444) diff --git a/VERSION b/VERSION index feaae22ba..b50dd27dd 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.13.0 +1.13.1 diff --git a/ecs-cli/modules/version/version.go b/ecs-cli/modules/version/version.go index ed52fa473..7f5dedb0b 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.13.0" +const Version = "1.13.1" // GitDirty indicates the cleanliness of the git repo when this ecs-cli was built const GitDirty = true