Bump 1.14.0-rc1

Signed-off-by: Joffrey F <joffrey@docker.com>
This commit is contained in:
Joffrey F 2017-05-26 14:39:47 -07:00 committed by Joffrey F
parent 78bb879419
commit 73dfdfffb0
3 changed files with 51 additions and 2 deletions

View File

@ -1,6 +1,55 @@
Change log Change log
========== ==========
1.14.0 (2017-06-06)
-------------------
### New features
#### Compose file version 3.3
- 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
#### Compose file version 2.2
- Added the following parameters in service definitions: `cpu_count`,
`cpu_percent`, `cpus`
#### Compose file version 2.1
- Added support for build labels. This feature is also available in the
2.2 and 3.3 formats.
#### All formats
- Added shorthand `-u` for `--user` flag in `docker-compose exec`
- Differences in labels between the Compose file and remote network
will now print a warning instead of preventing redeployment.
### Bugfixes
- Fixed a bug where service's dependencies were being rescaled to their
default scale when running a `docker-compose run` command
- Fixed a bug where `docker-compose rm` with the `--stop` flag was not
behaving properly when provided with a list of services to remove
- Fixed a bug where `cache_from` in the build section would be ignored when
using more than one Compose file.
- Fixed a bug where override files would not be picked up by Compose if they
had the `.yaml` extension
- Fixed a bug on Windows Engine where networks would be incorrectly flagged
for recreation
- Fixed a bug where services declaring ports would cause crashes on some
versions of Python 3
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.0dev' __version__ = '1.14.0-rc1'

View File

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