diff --git a/CHANGELOG.md b/CHANGELOG.md index 0c32d8248..02ed369a9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,17 @@ Change log ========== -1.28.0 (2020-12-03) + +1.28.1 (2021-01-25) +------------------- + +### Bugs + +- Revert to Python 3.7 bump for Linux static builds + +- Add bash completion for `docker-compose logs|up --no-log-prefix` + +1.28.0 (2021-01-20) ------------------- ### Features diff --git a/compose/__init__.py b/compose/__init__.py index 160378d56..a32338508 100644 --- a/compose/__init__.py +++ b/compose/__init__.py @@ -1 +1 @@ -__version__ = '1.28.0' +__version__ = '1.28.1' diff --git a/script/run/run.sh b/script/run/run.sh index 08265326c..c470f3bb0 100755 --- a/script/run/run.sh +++ b/script/run/run.sh @@ -15,7 +15,7 @@ set -e -VERSION="1.28.0" +VERSION="1.28.1" IMAGE="docker/compose:$VERSION"