"Bump 1.21.1"

Signed-off-by: Joffrey F <joffrey@docker.com>
This commit is contained in:
Joffrey F 2018-04-27 19:03:45 +00:00
parent b1a1c6a234
commit 192a665569
3 changed files with 28 additions and 2 deletions

View File

@ -1,6 +1,32 @@
Change log
==========
1.21.1 (2018-04-27)
-------------------
### Bugfixes
- In 1.21.0, we introduced a change to how project names are sanitized for
internal use in resource names. This caused issues when manipulating an
existing, deployed application whose name had changed as a result.
This release properly detects resources using "legacy" naming conventions.
- Fixed an issue where specifying an in-context Dockerfile using an absolute
path would fail despite being valid.
- Fixed a bug where IPAM option changes were incorrectly detected, preventing
redeployments.
- Validation of v2 files now properly checks the structure of IPAM configs.
- Improved support for credentials stores on Windows to include binaries using
extensions other than `.exe`. The list of valid extensions is determined by
the contents of the `PATHEXT` environment variable.
- Fixed a bug where Compose would generate invalid binds containing duplicate
elements with some v3.2 files, triggering errors at the Engine level during
deployment.
1.21.0 (2018-04-10)
-------------------

View File

@ -1,4 +1,4 @@
from __future__ import absolute_import
from __future__ import unicode_literals
__version__ = '1.21.0'
__version__ = '1.21.1'

View File

@ -15,7 +15,7 @@
set -e
VERSION="1.21.0"
VERSION="1.21.1"
IMAGE="docker/compose:$VERSION"