From e1fb1e9a3a8bcf5594494d85753999140eb4f39f Mon Sep 17 00:00:00 2001 From: aiordache Date: Mon, 11 Jan 2021 19:12:23 +0100 Subject: [PATCH] "Bump 1.28.0-rc3" Signed-off-by: aiordache --- CHANGELOG.md | 8 +++++++- compose/__init__.py | 2 +- script/run/run.sh | 2 +- 3 files changed, 9 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index dcae53b6f..1a702e3b1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,7 +10,7 @@ Change log - Support for service profiles -- Change the SSH conneciton approach to the Docker CLI's via shellout to the local SSH client (old behaviour enabled by setting `COMPOSE_PARAMIKO_SSH` environment variable) +- Change the SSH connection approach to the Docker CLI's via shellout to the local SSH client (old behaviour enabled by setting `COMPOSE_PARAMIKO_SSH` environment variable) - Add flag to disable log prefix @@ -26,6 +26,12 @@ Change log ### Miscellaneous +- Make COMPOSE_DOCKER_CLI_BUILD=1 the default + +- Add usage metrics + +- Sync schema with COMPOSE specification + - Improve failure report for missing mandatory environment variables - Bump attrs to 20.3.0 diff --git a/compose/__init__.py b/compose/__init__.py index 415690d88..512ee28e6 100644 --- a/compose/__init__.py +++ b/compose/__init__.py @@ -1 +1 @@ -__version__ = '1.28.0-rc2' +__version__ = '1.28.0-rc3' diff --git a/script/run/run.sh b/script/run/run.sh index 4f1feb223..a23cdbf79 100755 --- a/script/run/run.sh +++ b/script/run/run.sh @@ -15,7 +15,7 @@ set -e -VERSION="1.28.0-rc2" +VERSION="1.28.0-rc3" IMAGE="docker/compose:$VERSION"