Bump 1.20.0-rc2

Signed-off-by: Joffrey F <joffrey@docker.com>
This commit is contained in:
Joffrey F 2018-03-08 18:29:48 -08:00
parent 768e28ee30
commit 8c4af54257
3 changed files with 11 additions and 3 deletions

View File

@ -38,10 +38,12 @@ Change log
- Proxy configuration found in the `~/.docker/config.json` file now populates
environment and build args for containers created by Compose
- Added a `--use-aliases` flag to `docker-compose run`, indicating that
- Added the `--use-aliases` flag to `docker-compose run`, indicating that
network aliases declared in the service's config should be used for the
running container
- Added the `--include-deps` flag to `docker-compose pull`
- `docker-compose run` now kills and removes the running container upon
receiving `SIGHUP`
@ -55,6 +57,9 @@ Change log
- Fixed `.dockerignore` handling, notably with regard to absolute paths
and last-line precedence rules
- Fixed an issue where Compose would make costly DNS lookups when connecting
to the Engine when using Docker For Mac
- Fixed a bug introduced in 1.19.0 which caused the default certificate path
to not be honored by Compose
@ -70,6 +75,9 @@ Change log
- A `seccomp:<filepath>` entry in the `security_opt` config now correctly
sends the contents of the file to the engine
- ANSI output for `up` and `down` operations should no longer affect the wrong
lines
- Improved support for non-unicode locales
- Fixed a crash occurring on Windows when the user's home directory name

View File

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

View File

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