From d92e9beec1b405df52ff745d8128c72b5bc35833 Mon Sep 17 00:00:00 2001 From: Ulysses Souza Date: Fri, 29 Nov 2019 19:21:16 +0100 Subject: [PATCH] "Bump 1.25.1-rc1" Signed-off-by: Ulysses Souza --- CHANGELOG.md | 13 +++++++++++++ compose/__init__.py | 2 +- script/run/run.sh | 2 +- 3 files changed, 15 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d1a6fae32..ea0ddf802 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,19 @@ Change log ========== +1.25.1-rc1 (2019-11-29) +----------------------- + +### Bugfixes + +- Discard label `com.docker.compose.filepaths` having `None` as value. Typically, when coming from stdin + +- Add OSX binary as a directory to solve slow start up time caused by MacOS Catalina binary scan + +- Pass in HOME env-var in container mode (running with `script/run/run.sh`) + +- Revert behavior of "only pull images that we can't build" and replace by a warning informing the image we can't pull and must be built + 1.25.0 (2019-11-18) ------------------- diff --git a/compose/__init__.py b/compose/__init__.py index 69c4e0e49..cda820978 100644 --- a/compose/__init__.py +++ b/compose/__init__.py @@ -1,4 +1,4 @@ from __future__ import absolute_import from __future__ import unicode_literals -__version__ = '1.26.0dev' +__version__ = '1.25.1-rc1' diff --git a/script/run/run.sh b/script/run/run.sh index 77f245c13..744766a06 100755 --- a/script/run/run.sh +++ b/script/run/run.sh @@ -15,7 +15,7 @@ set -e -VERSION="1.25.0" +VERSION="1.25.1-rc1" IMAGE="docker/compose:$VERSION"