From f71293bb76376d04ab57878ce7dfc180a4e4fd5e Mon Sep 17 00:00:00 2001 From: Joffrey F Date: Tue, 25 Jul 2017 16:02:11 -0700 Subject: [PATCH] Bump 1.15.0 Signed-off-by: Joffrey F --- CHANGELOG.md | 5 ++++- compose/__init__.py | 2 +- script/run/run.sh | 2 +- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c4b97a756..928922782 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,7 @@ Change log ========== -1.15.0 (2017-07-18) +1.15.0 (2017-07-26) ------------------- ### New features @@ -45,6 +45,9 @@ Change log - Fixed an issue where the output of `docker-compose config` would be invalid if the original file used `Y` or `N` values +- Fixed an issue preventing `up` operations on a previously created stack on + Windows Engine. + 1.14.0 (2017-06-19) ------------------- diff --git a/compose/__init__.py b/compose/__init__.py index c040b295f..f238607c0 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.15.0-rc1' +__version__ = '1.15.0' diff --git a/script/run/run.sh b/script/run/run.sh index 4f0f764b3..47a81c7f8 100755 --- a/script/run/run.sh +++ b/script/run/run.sh @@ -15,7 +15,7 @@ set -e -VERSION="1.15.0-rc1" +VERSION="1.15.0" IMAGE="docker/compose:$VERSION"