diff --git a/CHANGELOG.md b/CHANGELOG.md index 2e7a6bbf0..7af3f9ed7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,31 @@ Change log ========== +1.27.0 (2020-08-11) +------------------- + +### Features + +- Merge 2.x and 3.x compose formats and align with COMPOSE_SPEC schema + +- Implement service mode for ipc + +- Pass COMPOSE_PROJECT_NAME environment variable in container mode + +- Make run behave in the same way as up + +### Bugs + +- Ignore build context path validation when building is not required + +### Miscellaneous + +- Bump `docker-py` to 4.3.0 + +- Bump `tox` to 3.19.0 + +- Bump `virtualenv` to 20.0.30 + 1.26.1 (2020-06-30) ------------------- diff --git a/compose/__init__.py b/compose/__init__.py index 76e27d25f..b64e8b284 100644 --- a/compose/__init__.py +++ b/compose/__init__.py @@ -1 +1 @@ -__version__ = '1.27.0dev' +__version__ = '1.27.0-rc1' diff --git a/script/release/release.py b/script/release/release.py old mode 100644 new mode 100755 diff --git a/script/run/run.sh b/script/run/run.sh index 8bc6798f3..3e39a5d95 100755 --- a/script/run/run.sh +++ b/script/run/run.sh @@ -15,7 +15,7 @@ set -e -VERSION="1.26.1" +VERSION="1.27.0-rc1" IMAGE="docker/compose:$VERSION"