From a186c3142b80d99c62995f6f36e64867ed883701 Mon Sep 17 00:00:00 2001 From: Joffrey F Date: Thu, 25 Jan 2018 18:24:39 -0800 Subject: [PATCH] Bump 1.19.0-rc2 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 b6217fdcd..3c3595d97 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -72,6 +72,9 @@ Change log - Fixed a bug where the recreation of a service would break if the image associated with the previous container had been removed +- Fixed a bug where updating a mount's target would break Compose when + trying to recreate the associated service + - Fixed a bug where `tmpfs` volumes declared using the extended syntax in Compose files using version 3.2 would be erroneously created as anonymous volumes instead diff --git a/compose/__init__.py b/compose/__init__.py index 7e19bd462..bc5cff575 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-rc1' +__version__ = '1.19.0-rc2' diff --git a/script/run/run.sh b/script/run/run.sh index 8cf59fc33..e45067b3c 100755 --- a/script/run/run.sh +++ b/script/run/run.sh @@ -15,7 +15,7 @@ set -e -VERSION="1.19.0-rc1" +VERSION="1.19.0-rc2" IMAGE="docker/compose:$VERSION"