From cdd02822f53a13d91d590578b8617f217a076393 Mon Sep 17 00:00:00 2001 From: Joffrey F Date: Thu, 1 Feb 2018 14:22:10 -0800 Subject: [PATCH] Bump 1.19.0-rc3 Signed-off-by: Joffrey F --- CHANGELOG.md | 3 +++ compose/__init__.py | 2 +- script/run/run.sh | 2 +- 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3c3595d97..ea970a100 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -66,6 +66,9 @@ Change log - Fixed a bug where setting TLS options with environment and CLI flags simultaneously would result in part of the configuration being ignored +- Fixed a bug where the DOCKER_TLS_VERIFY environment variable was being + ignored by Compose + - Fixed a bug where the `-d` and `--timeout` flags in `up` were erroneously marked as incompatible diff --git a/compose/__init__.py b/compose/__init__.py index bc5cff575..e5e83434f 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.19.0-rc2' +__version__ = '1.19.0-rc3' diff --git a/script/run/run.sh b/script/run/run.sh index e45067b3c..7355d9181 100755 --- a/script/run/run.sh +++ b/script/run/run.sh @@ -15,7 +15,7 @@ set -e -VERSION="1.19.0-rc2" +VERSION="1.19.0-rc3" IMAGE="docker/compose:$VERSION"