Bump 1.11.2

Signed-off-by: Joffrey F <joffrey@docker.com>
This commit is contained in:
Joffrey F 2017-02-16 17:14:34 -08:00
parent b9e9177ba9
commit dfed245b57
3 changed files with 23 additions and 2 deletions

View File

@ -1,6 +1,27 @@
Change log
==========
1.11.2 (2017-02-17)
-------------------
### Bugfixes
- Fixed a bug that was preventing secrets configuration from being
loaded properly
- Fixed a bug where the `docker-compose config` command would fail
if the config file contained secrets definitions
- Fixed an issue where Compose on some linux distributions would
pick up and load an outdated version of the requests library
- Fixed an issue where socket-type files inside a build folder
would cause `docker-compose` to crash when trying to build that
service
- Fixed an issue where recursive wildcard patterns `**` were not being
recognized in `.dockerignore` files.
1.11.1 (2017-02-09)
-------------------

View File

@ -1,4 +1,4 @@
from __future__ import absolute_import
from __future__ import unicode_literals
__version__ = '1.11.1'
__version__ = '1.11.2'

View File

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