diff --git a/CHANGELOG.md b/CHANGELOG.md index 6f25eb833..48feabd65 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,21 @@ Change log ========== +1.28.5 (2021-02-25) +------------------- + +[List of PRs / issues for this release](https://github.com/docker/compose/milestone/55?closed=1) + +### Bugs + +- Fix OpenSSL version mismatch error when shelling out to the ssh client (via bump to docker-py 4.4.4 which contains the fix) + +- Add missing build flags to the native builder: `platform`, `isolation` and `extra_hosts` + +- Remove info message on native build + +- Avoid fetching logs when service logging driver is set to 'none' + 1.28.4 (2021-02-18) ------------------- diff --git a/compose/__init__.py b/compose/__init__.py index e0e068849..0bf76902a 100644 --- a/compose/__init__.py +++ b/compose/__init__.py @@ -1 +1 @@ -__version__ = '1.28.4' +__version__ = '1.28.5' diff --git a/script/run/run.sh b/script/run/run.sh index 383c41cdb..3d88406c2 100755 --- a/script/run/run.sh +++ b/script/run/run.sh @@ -15,7 +15,7 @@ set -e -VERSION="1.28.4" +VERSION="1.28.5" IMAGE="docker/compose:$VERSION"