mirror of https://github.com/docker/compose.git
Bump 1.19.0-rc2
Signed-off-by: Joffrey F <joffrey@docker.com>
This commit is contained in:
parent
cc2f023747
commit
a186c3142b
|
@ -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
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
from __future__ import absolute_import
|
||||
from __future__ import unicode_literals
|
||||
|
||||
__version__ = '1.19.0-rc1'
|
||||
__version__ = '1.19.0-rc2'
|
||||
|
|
|
@ -15,7 +15,7 @@
|
|||
|
||||
set -e
|
||||
|
||||
VERSION="1.19.0-rc1"
|
||||
VERSION="1.19.0-rc2"
|
||||
IMAGE="docker/compose:$VERSION"
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue