diff --git a/CHANGELOG.md b/CHANGELOG.md index a8a712ee9..b6908eb8c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # Changelog +## 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) +* Feature - Add support for instances with `arm64` architechture +* Feature - Add `--desired-status` flag to all `ps` commands to allow filtering for "STOPPED" or "RUNNING" containers (#400) +* Feature - Add support for tagging resources created by the ecs-cli. Tagging is supported on `ecs-cli up`, `ecs-cli push`, `ecs-cli registry-creds up` and all `ecs-cli compose` commands with use of the `--tags` flag. (#670) +* Feature - Add support for ECR FIPS endpoints on `push` and `pull` commands (partially addresses #697) +* Feature - Add support for `tty` attribute in compose projects (#705) + ## 1.12.1 * Bug - Allow container mem_limit to be null if task mem_limit is set (#606) * Bug - Allow container mem_limit to be null if mem_reservation is set (#570) diff --git a/VERSION b/VERSION index f8f4f03b3..feaae22ba 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.12.1 +1.13.0 diff --git a/ecs-cli/modules/version/version.go b/ecs-cli/modules/version/version.go index 199a0304a..ed52fa473 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.12.1" +const Version = "1.13.0" // GitDirty indicates the cleanliness of the git repo when this ecs-cli was built const GitDirty = true