diff --git a/CHANGELOG.md b/CHANGELOG.md index 9362e8d84..4b98799b5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,12 +1,19 @@ Change log ========== +1.27.2 (2020-09-10) +------------------- + +### Bugs + +- Fix bug on `docker-compose run` container attach + 1.27.1 (2020-09-10) ------------------- ### Bugs -- Fix `compose run` when `service.scale` is specified +- Fix `docker-compose run` when `service.scale` is specified - Allow `driver` property for external networks as temporary workaround for swarm network propagation issue diff --git a/compose/__init__.py b/compose/__init__.py index a873751ac..b5476c147 100644 --- a/compose/__init__.py +++ b/compose/__init__.py @@ -1 +1 @@ -__version__ = '1.27.1' +__version__ = '1.27.2' diff --git a/script/run/run.sh b/script/run/run.sh index 3386606a4..942e0d39e 100755 --- a/script/run/run.sh +++ b/script/run/run.sh @@ -15,7 +15,7 @@ set -e -VERSION="1.27.1" +VERSION="1.27.2" IMAGE="docker/compose:$VERSION"