"Bump 1.24.0-rc3"

Signed-off-by: Ulysses Souza <ulysses.souza@docker.com>
This commit is contained in:
Ulysses Souza 2019-03-22 15:15:52 +01:00
parent c54341758a
commit 428942498b
3 changed files with 19 additions and 3 deletions

View File

@ -1,7 +1,7 @@
Change log
==========
1.24.0 (2019-01-25)
1.24.0 (2019-03-22)
-------------------
### Features
@ -11,6 +11,12 @@ Change log
- Added a `--all` flag to `docker-compose ps` to include stopped one-off containers
in the command's output.
- Add bash completion for `ps --all|-a`
- Support for credential_spec
- Add `--parallel` to `docker build`'s options in `bash` and `zsh` completion
### Bugfixes
- Fixed a bug where some valid credential helpers weren't properly handled by Compose
@ -37,6 +43,16 @@ Change log
- Missing images will no longer stop the execution of `docker-compose down` commands
(a warning will be displayed instead).
- Force `virtualenv` version for macOS CI
- Fix merging of compose files when network has `None` config
- Fix `CTRL+C` issues by enabling `bootloader_ignore_signals` in `pyinstaller`
- Bump `docker-py` version to `3.7.1` to fix SSH issues
- Fix release script and some typos on release documentation
1.23.2 (2018-11-28)
-------------------

View File

@ -1,4 +1,4 @@
from __future__ import absolute_import
from __future__ import unicode_literals
__version__ = '1.24.0-rc1'
__version__ = '1.24.0-rc3'

View File

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