diff --git a/CHANGELOG.md b/CHANGELOG.md index 440104fa6..80f98be92 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -49,7 +49,7 @@ Change log - Fix `CTRL+C` issues by enabling `bootloader_ignore_signals` in `pyinstaller` -- Bump `docker-py` version to `3.7.1` to fix SSH issues +- Bump `docker-py` version to `3.7.2` to fix SSH and proxy config issues - Fix release script and some typos on release documentation diff --git a/compose/__init__.py b/compose/__init__.py index 5fd7d326b..b66d2eb58 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.24.0-rc3' +__version__ = '1.24.0' diff --git a/script/run/run.sh b/script/run/run.sh index edc2e0c0e..a8690cad1 100755 --- a/script/run/run.sh +++ b/script/run/run.sh @@ -15,7 +15,7 @@ set -e -VERSION="1.24.0-rc3" +VERSION="1.24.0" IMAGE="docker/compose:$VERSION"