Merge pull request #5812 from docker/bump-1.20.1

Bump 1.20.1
This commit is contained in:
Joffrey F 2018-03-21 16:36:54 +01:00 committed by GitHub
commit a2f685927a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 13 additions and 5 deletions

View File

@ -1,7 +1,15 @@
Change log
==========
1.20.0 (2018-03-07)
1.20.1 (2018-03-21)
-------------------
### Bugfixes
- Fixed an issue where `docker-compose build` would error out if the
build context contained directory symlinks
1.20.0 (2018-03-20)
-------------------
### New features

View File

@ -1,4 +1,4 @@
from __future__ import absolute_import
from __future__ import unicode_literals
__version__ = '1.20.0'
__version__ = '1.20.1'

View File

@ -2,7 +2,7 @@ backports.ssl-match-hostname==3.5.0.1; python_version < '3'
cached-property==1.3.0
certifi==2017.4.17
chardet==3.0.4
docker==3.1.3
docker==3.1.4
docker-pycreds==0.2.1
dockerpty==0.4.1
docopt==0.6.2

View File

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

View File

@ -36,7 +36,7 @@ install_requires = [
'requests >= 2.6.1, != 2.11.0, != 2.12.2, != 2.18.0, < 2.19',
'texttable >= 0.9.0, < 0.10',
'websocket-client >= 0.32.0, < 1.0',
'docker >= 3.1.3, < 4.0',
'docker >= 3.1.4, < 4.0',
'dockerpty >= 0.4.1, < 0.5',
'six >= 1.3.0, < 2',
'jsonschema >= 2.5.1, < 3',