diff --git a/CHANGELOG.md b/CHANGELOG.md index 2e7a6bbf0..c7da39866 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,13 @@ Change log ========== +1.26.2 (2020-07-02) +------------------- + +### Bugs + +- Enforce `docker-py` 4.2.2 as minimum version when installing with pip + 1.26.1 (2020-06-30) ------------------- diff --git a/compose/__init__.py b/compose/__init__.py index e10fe0ef7..2e422a1a4 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.26.1' +__version__ = '1.26.2' diff --git a/script/run/run.sh b/script/run/run.sh index f7be36b60..32eb169c6 100755 --- a/script/run/run.sh +++ b/script/run/run.sh @@ -15,7 +15,7 @@ set -e -VERSION="1.26.1" +VERSION="1.26.2" IMAGE="docker/compose:$VERSION"