mirror of https://github.com/docker/compose.git
"Bump 1.23.0-rc2"
Signed-off-by: Silvin Lubecki <silvin.lubecki@docker.com>
This commit is contained in:
parent
099c887b59
commit
350a555e04
|
@ -56,6 +56,12 @@ naming scheme accordingly before upgrading.
|
||||||
- Fixed a bug causing `external: false` entries in the Compose file to be
|
- Fixed a bug causing `external: false` entries in the Compose file to be
|
||||||
printed as `external: true` in the output of `docker-compose config`
|
printed as `external: true` in the output of `docker-compose config`
|
||||||
|
|
||||||
|
- Fixed a bug where issuing a `docker-compose pull` command on services
|
||||||
|
without a defined image key would cause Compose to crash
|
||||||
|
|
||||||
|
- Volumes and binds are now mounted in the order they're declared in the
|
||||||
|
service definition
|
||||||
|
|
||||||
### Miscellaneous
|
### Miscellaneous
|
||||||
|
|
||||||
- The `zsh` completion script has been updated with new options, and no
|
- The `zsh` completion script has been updated with new options, and no
|
||||||
|
|
|
@ -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.23.0-rc1'
|
__version__ = '1.23.0-rc2'
|
||||||
|
|
|
@ -15,7 +15,7 @@
|
||||||
|
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
VERSION="1.23.0-rc1"
|
VERSION="1.23.0-rc2"
|
||||||
IMAGE="docker/compose:$VERSION"
|
IMAGE="docker/compose:$VERSION"
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue