From b02f1306842d603774a19bf925c5719425f82b5b Mon Sep 17 00:00:00 2001 From: Joffrey F Date: Wed, 31 Oct 2018 14:49:00 -0700 Subject: [PATCH] "Bump 1.23.1" Signed-off-by: Joffrey F --- CHANGELOG.md | 11 +++++++++++ compose/__init__.py | 2 +- script/run/run.sh | 2 +- 3 files changed, 13 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 26fd3f883..66af5ecd4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,17 @@ Change log ========== +1.23.1 (2018-11-01) +------------------- + +### Bugfixes + +- Fixed a bug where working with containers created with a previous (< 1.23.0) + version of Compose would cause unexpected crashes + +- Fixed an issue where the behavior of the `--project-directory` flag would + vary depending on which subcommand was being used. + 1.23.0 (2018-10-30) ------------------- diff --git a/compose/__init__.py b/compose/__init__.py index b9088474f..7431dd0c0 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.23.0' +__version__ = '1.23.1' diff --git a/script/run/run.sh b/script/run/run.sh index d82b54f0f..4ce09e992 100755 --- a/script/run/run.sh +++ b/script/run/run.sh @@ -15,7 +15,7 @@ set -e -VERSION="1.23.0" +VERSION="1.23.1" IMAGE="docker/compose:$VERSION"