mirror of https://github.com/docker/compose.git
Bump 1.18.0-rc2
Signed-off-by: Joffrey F <joffrey@docker.com>
This commit is contained in:
parent
45d2eb4003
commit
189468b07f
|
@ -71,6 +71,8 @@ Change log
|
|||
- Fixed a bug where missing secret files would generate an empty directory
|
||||
in their place
|
||||
|
||||
- Fixed character encoding issues in the CLI's error handlers
|
||||
|
||||
- Added validation for the `test` field in healthchecks
|
||||
|
||||
- Added validation for the `subnet` field in IPAM configurations
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
from __future__ import absolute_import
|
||||
from __future__ import unicode_literals
|
||||
|
||||
__version__ = '1.18.0-rc1'
|
||||
__version__ = '1.18.0-rc2'
|
||||
|
|
|
@ -15,7 +15,7 @@
|
|||
|
||||
set -e
|
||||
|
||||
VERSION="1.18.0-rc1"
|
||||
VERSION="1.18.0-rc2"
|
||||
IMAGE="docker/compose:$VERSION"
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue