Bump 1.19.0-rc2

Signed-off-by: Joffrey F <joffrey@docker.com>
This commit is contained in:
Joffrey F 2018-01-25 18:24:39 -08:00
parent cc2f023747
commit a186c3142b
3 changed files with 5 additions and 2 deletions

View File

@ -72,6 +72,9 @@ Change log
- Fixed a bug where the recreation of a service would break if the image
associated with the previous container had been removed
- Fixed a bug where updating a mount's target would break Compose when
trying to recreate the associated service
- Fixed a bug where `tmpfs` volumes declared using the extended syntax in
Compose files using version 3.2 would be erroneously created as anonymous
volumes instead

View File

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

View File

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