From 1473615283d32c93906a3d8ccf73402483785a6d Mon Sep 17 00:00:00 2001 From: aiordache Date: Wed, 17 Feb 2021 20:06:32 +0100 Subject: [PATCH] "Bump 1.28.3" Signed-off-by: aiordache --- CHANGELOG.md | 21 +++++++++++++++++++++ compose/__init__.py | 2 +- script/run/run.sh | 2 +- 3 files changed, 23 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index db0cc00ff..13bac525a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,27 @@ Change log ========== +1.28.3 (2021-02-17) +------------------- + +[List of PRs / issues for this release](https://github.com/docker/compose/milestone/53?closed=1) + +### Bugs + +- Fix SSH hostname parsing when it contains leading s/h, and removes the quiet option that was hiding the error (via docker-py bump to 4.4.2) + +- Fix key error for '--no-log-prefix' option + +- Fix incorrect CLI environment variable name for service profiles: `COMPOSE_PROFILES` instead of `COMPOSE_PROFILE` + +- Fix fish completion + +### Miscellaneous + +- Bump cryptography to 3.3.2 + +- Remove log driver filter + 1.28.2 (2021-01-26) ------------------- diff --git a/compose/__init__.py b/compose/__init__.py index 017645763..bf1734b57 100644 --- a/compose/__init__.py +++ b/compose/__init__.py @@ -1 +1 @@ -__version__ = '1.28.2' +__version__ = '1.28.3' diff --git a/script/run/run.sh b/script/run/run.sh index 2a84ca10d..488cf1c8e 100755 --- a/script/run/run.sh +++ b/script/run/run.sh @@ -15,7 +15,7 @@ set -e -VERSION="1.28.2" +VERSION="1.28.3" IMAGE="docker/compose:$VERSION"