diff --git a/CHANGELOG.md b/CHANGELOG.md index 432f1745e..2e7a6bbf0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,19 @@ Change log ========== +1.26.1 (2020-06-30) +------------------- + +### Features + +- Bump `docker-py` from 4.2.1 to 4.2.2 + +### Bugs + +- Enforce `docker-py` 4.2.1 as minimum version when installing with pip + +- Fix context load for non-docker endpoints + 1.26.0 (2020-06-03) ------------------- diff --git a/compose/__init__.py b/compose/__init__.py index 4163aeb90..e10fe0ef7 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.0' +__version__ = '1.26.1' diff --git a/script/run/run.sh b/script/run/run.sh index 65fb656ad..f7be36b60 100755 --- a/script/run/run.sh +++ b/script/run/run.sh @@ -15,7 +15,7 @@ set -e -VERSION="1.26.0" +VERSION="1.26.1" IMAGE="docker/compose:$VERSION"