mirror of https://github.com/docker/compose.git
Bump 1.19.0-rc3
Signed-off-by: Joffrey F <joffrey@docker.com>
This commit is contained in:
parent
ea0dc8a408
commit
cdd02822f5
|
@ -66,6 +66,9 @@ Change log
|
||||||
- Fixed a bug where setting TLS options with environment and CLI flags
|
- Fixed a bug where setting TLS options with environment and CLI flags
|
||||||
simultaneously would result in part of the configuration being ignored
|
simultaneously would result in part of the configuration being ignored
|
||||||
|
|
||||||
|
- Fixed a bug where the DOCKER_TLS_VERIFY environment variable was being
|
||||||
|
ignored by Compose
|
||||||
|
|
||||||
- Fixed a bug where the `-d` and `--timeout` flags in `up` were erroneously
|
- Fixed a bug where the `-d` and `--timeout` flags in `up` were erroneously
|
||||||
marked as incompatible
|
marked as incompatible
|
||||||
|
|
||||||
|
|
|
@ -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.19.0-rc2'
|
__version__ = '1.19.0-rc3'
|
||||||
|
|
|
@ -15,7 +15,7 @@
|
||||||
|
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
VERSION="1.19.0-rc2"
|
VERSION="1.19.0-rc3"
|
||||||
IMAGE="docker/compose:$VERSION"
|
IMAGE="docker/compose:$VERSION"
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue