diff --git a/CHANGELOG.md b/CHANGELOG.md index 748cce08a..02e439e4f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,8 +10,8 @@ Change log - Introduced version 3.3 of the `docker-compose.yml` specification. This version requires to be used with Docker Engine 17.06.0 or above. - Note: the `credential_spec` key only applies to Swarm services and will - be ignored by Compose + Note: the `credential_spec` and `configs` keys only apply to Swarm services + and will be ignored by Compose #### Compose file version 2.2 @@ -50,6 +50,9 @@ Change log - Fixed a bug where services declaring ports would cause crashes on some versions of Python 3 +- Fixed a bug where the output of `docker-compose config` would sometimes + contain invalid port definitions + 1.13.0 (2017-05-02) ------------------- diff --git a/compose/__init__.py b/compose/__init__.py index 445216460..9bbae98d5 100644 --- a/compose/__init__.py +++ b/compose/__init__.py @@ -1,4 +1,4 @@ from __future__ import absolute_import from __future__ import unicode_literals -__version__ = '1.14.0-rc1' +__version__ = '1.14.0-rc2' diff --git a/script/run/run.sh b/script/run/run.sh index 45063abd5..ef2f63d8f 100755 --- a/script/run/run.sh +++ b/script/run/run.sh @@ -15,7 +15,7 @@ set -e -VERSION="1.14.0-rc1" +VERSION="1.14.0-rc2" IMAGE="docker/compose:$VERSION"