From 225bc3a556bd2d1759ab27b23f54e7e68086c9f0 Mon Sep 17 00:00:00 2001 From: Angel Velazquez Date: Wed, 9 Jun 2021 21:09:16 +0000 Subject: [PATCH] Release 1.53.0 --- CHANGELOG.md | 4 ++++ VERSION | 2 +- agent/version/version.go | 4 ++-- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 25732e4e0f4..471e940f32b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,8 @@ # Changelog +## 1.53.0 +* Bug - Revert change that registered Windows ECS Instances using specific OSFamilyType [#2859](https://github.com/aws/amazon-ecs-agent/pull/2859) to address [#2881](https://github.com/aws/amazon-ecs-agent/issues/2881) +* Bug - Fix an edge case that could incorrectly mark a task as STOPPED when Docker crashes while stopping a container [#2885](https://github.com/aws/amazon-ecs-agent/pull/2885) + ## 1.52.2 * Enhancement - validate agent config file path permission on Windows [#2866](https://github.com/aws/amazon-ecs-agent/pull/2866) * Bug - fix potential goroutine leak when closing websocket connections [#2854](https://github.com/aws/amazon-ecs-agent/pull/2854) diff --git a/VERSION b/VERSION index 52952b7fff5..3f4830156cb 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.52.2 +1.53.0 diff --git a/agent/version/version.go b/agent/version/version.go index 4ebc2d9532f..b8c7fa1f6a3 100644 --- a/agent/version/version.go +++ b/agent/version/version.go @@ -22,10 +22,10 @@ package version // repository. Only the 'Version' const should change in checked-in source code // Version is the version of the Agent -const Version = "1.52.2" +const Version = "1.53.0" // GitDirty indicates the cleanliness of the git repo when this agent was built const GitDirty = true // GitShortHash is the short hash of this agent build -const GitShortHash = "cc51229f" +const GitShortHash = "2d0d8aa9"