diff --git a/CHANGELOG.md b/CHANGELOG.md index 7af3f9ed7..2c2113668 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,7 @@ Change log ========== -1.27.0 (2020-08-11) +1.27.0 (2020-08-21) ------------------- ### Features @@ -10,17 +10,27 @@ Change log - Implement service mode for ipc -- Pass COMPOSE_PROJECT_NAME environment variable in container mode +- Pass `COMPOSE_PROJECT_NAME` environment variable in container mode - Make run behave in the same way as up +- Use `docker build` on `docker-compose run` when `COMPOSE_DOCKER_CLI_BUILD` environment variable is set + +- Use docker-py default API version for engine queries (`auto`) + +- Parse `network_mode` on build + ### Bugs - Ignore build context path validation when building is not required +- Fix float to bytes conversion via docker-py bump to 4.3.1 + +- Fix scale bug when deploy section is set + ### Miscellaneous -- Bump `docker-py` to 4.3.0 +- Bump `docker-py` to 4.3.1 - Bump `tox` to 3.19.0 diff --git a/compose/__init__.py b/compose/__init__.py index b64e8b284..d33f94506 100644 --- a/compose/__init__.py +++ b/compose/__init__.py @@ -1 +1 @@ -__version__ = '1.27.0-rc1' +__version__ = '1.27.0-rc2' diff --git a/script/run/run.sh b/script/run/run.sh index 3e39a5d95..d2a3247c2 100755 --- a/script/run/run.sh +++ b/script/run/run.sh @@ -15,7 +15,7 @@ set -e -VERSION="1.27.0-rc1" +VERSION="1.27.0-rc2" IMAGE="docker/compose:$VERSION"