Bump 1.14.0-rc2

Signed-off-by: Joffrey F <joffrey@docker.com>
This commit is contained in:
Joffrey F 2017-06-06 12:36:26 -07:00 committed by Joffrey F
parent 73dfdfffb0
commit d81a27be02
3 changed files with 7 additions and 4 deletions

View File

@ -10,8 +10,8 @@ Change log
- Introduced version 3.3 of the `docker-compose.yml` specification. - Introduced version 3.3 of the `docker-compose.yml` specification.
This version requires to be used with Docker Engine 17.06.0 or above. 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 Note: the `credential_spec` and `configs` keys only apply to Swarm services
be ignored by Compose and will be ignored by Compose
#### Compose file version 2.2 #### Compose file version 2.2
@ -50,6 +50,9 @@ Change log
- Fixed a bug where services declaring ports would cause crashes on some - Fixed a bug where services declaring ports would cause crashes on some
versions of Python 3 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) 1.13.0 (2017-05-02)
------------------- -------------------

View File

@ -1,4 +1,4 @@
from __future__ import absolute_import from __future__ import absolute_import
from __future__ import unicode_literals from __future__ import unicode_literals
__version__ = '1.14.0-rc1' __version__ = '1.14.0-rc2'

View File

@ -15,7 +15,7 @@
set -e set -e
VERSION="1.14.0-rc1" VERSION="1.14.0-rc2"
IMAGE="docker/compose:$VERSION" IMAGE="docker/compose:$VERSION"