Bump 1.13.0-rc1

Signed-off-by: Joffrey F <joffrey@docker.com>
This commit is contained in:
Joffrey F 2017-04-21 14:43:03 -07:00
parent ef40e3c6b9
commit 38af51314e
3 changed files with 50 additions and 3 deletions

View File

@ -1,6 +1,53 @@
Change log Change log
========== ==========
1.13.0 (2017-05-01)
-------------------
### Breaking changes
- `docker-compose up` now resets a service's scaling to its default value.
You can use the newly introduced `--scale` option to specify a custom
scale value
### New features
#### Compose file version 2.2
- Introduced version 2.2 of the `docker-compose.yml` specification. This
version requires to be used with Docker Engine 1.13.0 or above
- Added support for `init` in service definitions.
- Added support for `scale` in service definitions. The configuration's value
can be overridden using the `--scale` flag in `docker-compose up`.
Please note that the `scale` command is disabled for this file format
#### Compose file version 2.x
- Added support for `options` in the `ipam` section of network definitions
### Bugfixes
- Fixed a bug where paths provided to compose via the `-f` option were not
being resolved properly
- Fixed a bug where the `ext_ip::target_port` notation in the ports section
was incorrectly marked as invalid
- Fixed an issue where the `exec` command would sometimes not return control
to the terminal when using the `-d` flag
- Fixed a bug where secrets were missing from the output of the `config`
command for v3.2 files
- Fixed an issue where `docker-compose` would hang if no internet connection
was available
- Fixed an issue where paths containing unicode characters passed via the `-f`
flag were causing Compose to crash
1.12.0 (2017-04-04) 1.12.0 (2017-04-04)
------------------- -------------------
@ -8,7 +55,7 @@ Change log
#### Compose file version 3.2 #### Compose file version 3.2
- Introduced version 3.2 of the `docker-compose.yml` specification. - Introduced version 3.2 of the `docker-compose.yml` specification
- Added support for `cache_from` in the `build` section of services - Added support for `cache_from` in the `build` section of services

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.13.0dev' __version__ = '1.13.0-rc1'

View File

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