mirror of https://github.com/docker/compose.git
Bump 1.20.1
Signed-off-by: Joffrey F <joffrey@docker.com>
This commit is contained in:
parent
e5ce2e6c07
commit
5d8c71b2c6
10
CHANGELOG.md
10
CHANGELOG.md
|
@ -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
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
from __future__ import absolute_import
|
||||
from __future__ import unicode_literals
|
||||
|
||||
__version__ = '1.20.0'
|
||||
__version__ = '1.20.1'
|
||||
|
|
|
@ -15,7 +15,7 @@
|
|||
|
||||
set -e
|
||||
|
||||
VERSION="1.20.0"
|
||||
VERSION="1.20.1"
|
||||
IMAGE="docker/compose:$VERSION"
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue