Przeglądaj źródła

Bump 1.16.0-rc2

Signed-off-by: Joffrey F <[email protected]>
Joffrey F 8 lat temu
rodzic
commit
5cc23c540c
3 zmienionych plików z 8 dodań i 8 usunięć
  1. 6 6
      CHANGELOG.md
  2. 1 1
      compose/__init__.py
  3. 1 1
      script/run/run.sh

+ 6 - 6
CHANGELOG.md

@@ -6,18 +6,12 @@ Change log
 
 ### New features
 
-#### Compose file version 3.4
-
-- Introduced version 3.4 of the `docker-compose.yml` specification.
-  This version requires to be used with Docker Engine 17.06.0 or above.
-
 #### Compose file version 2.3
 
 - Introduced version 2.3 of the `docker-compose.yml` specification.
   This version requires to be used with Docker Engine 17.06.0 or above.
 
 - Added support for the `target` parameter in network configurations
-  (also available in 3.4)
 
 - Added support for the `start_period` parameter in healthcheck
   configurations
@@ -44,6 +38,9 @@ Change log
 - Fixed issues where logs of TTY-enabled services were being printed
   incorrectly and causing `MemoryError` exceptions
 
+- Fixed a bug where printing application logs would sometimes be interrupted
+  by a `UnicodeEncodeError` exception on Python 3
+
 - The `$` character in the output of `docker-compose config` is now
   properly escaped
 
@@ -58,6 +55,9 @@ Change log
 - Fixed an issue where the `logging` options in the output of
   `docker-compose config` would be set to `null`, an invalid value
 
+- Fixed the output of the `docker-compose images` command when an image
+  would come from a private repository using an explicit port number
+
 - Fixed the output of `docker-compose config` when a port definition used
   `0` as the value for the published port
 

+ 1 - 1
compose/__init__.py

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

+ 1 - 1
script/run/run.sh

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