Pārlūkot izejas kodu

Bump 1.14.0

Signed-off-by: Joffrey F <[email protected]>
Joffrey F 8 gadi atpakaļ
vecāks
revīzija
cffce0880b
3 mainītis faili ar 6 papildinājumiem un 3 dzēšanām
  1. 4 1
      CHANGELOG.md
  2. 1 1
      compose/__init__.py
  3. 1 1
      script/run/run.sh

+ 4 - 1
CHANGELOG.md

@@ -1,7 +1,7 @@
 Change log
 ==========
 
-1.14.0 (2017-06-06)
+1.14.0 (2017-06-19)
 -------------------
 
 ### New features
@@ -41,6 +41,9 @@ Change log
 - Fixed a bug where `cache_from` in the build section would be ignored when
   using more than one Compose file.
 
+- Fixed a bug that prevented binding the same port to different IPs when
+  using more than one Compose file.
+
 - Fixed a bug where override files would not be picked up by Compose if they
   had the `.yaml` extension
 

+ 1 - 1
compose/__init__.py

@@ -1,4 +1,4 @@
 from __future__ import absolute_import
 from __future__ import unicode_literals
 
-__version__ = '1.14.0-rc2'
+__version__ = '1.14.0'

+ 1 - 1
script/run/run.sh

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