diff --git a/CHANGELOG.md b/CHANGELOG.md index c16f404e8..6f25eb833 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,19 @@ Change log ========== +1.28.4 (2021-02-18) +------------------- + +[List of PRs / issues for this release](https://github.com/docker/compose/milestone/54?closed=1) + +### Bugs + +- Fix SSH port parsing by bumping docker-py to 4.4.3 + +### Miscellaneous + +- Bump Python to 3.7.10 + 1.28.3 (2021-02-17) ------------------- diff --git a/compose/__init__.py b/compose/__init__.py index bf1734b57..e0e068849 100644 --- a/compose/__init__.py +++ b/compose/__init__.py @@ -1 +1 @@ -__version__ = '1.28.3' +__version__ = '1.28.4' diff --git a/script/run/run.sh b/script/run/run.sh index 488cf1c8e..383c41cdb 100755 --- a/script/run/run.sh +++ b/script/run/run.sh @@ -15,7 +15,7 @@ set -e -VERSION="1.28.3" +VERSION="1.28.4" IMAGE="docker/compose:$VERSION"