diff --git a/CHANGELOG.md b/CHANGELOG.md index 48feabd65..27649341f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,27 @@ Change log ========== +1.28.6 (2021-03-23) +------------------- + +[List of PRs / issues for this release](https://github.com/docker/compose/milestone/57?closed=1) + +### Bugs + +- Make `--env-file` relative to the current working directory and error out for invalid paths. Environment file paths set +with `--env-file` are relative to the current working directory while the default `.env` file is located in the project +directory which by default is the base directory of the Compose file. + +- Fix missing service property `storage_opt` by updating the compose schema + +- Fix build `extra_hosts` list format + +- Remove extra error message on `exec` + +### Miscellaneous + +- Add `compose.yml` and `compose.yaml` to default filename list + 1.28.5 (2021-02-25) ------------------- diff --git a/compose/__init__.py b/compose/__init__.py index 0bf76902a..eaf24498d 100644 --- a/compose/__init__.py +++ b/compose/__init__.py @@ -1 +1 @@ -__version__ = '1.28.5' +__version__ = '1.28.6' diff --git a/script/run/run.sh b/script/run/run.sh index 3d88406c2..958a5d984 100755 --- a/script/run/run.sh +++ b/script/run/run.sh @@ -15,7 +15,7 @@ set -e -VERSION="1.28.5" +VERSION="1.28.6" IMAGE="docker/compose:$VERSION"