Procházet zdrojové kódy

"Bump 1.23.0"

Signed-off-by: Joffrey F <[email protected]>
Joffrey F před 7 roky
rodič
revize
3104597e7d
3 změnil soubory, kde provedl 5 přidání a 2 odebrání
  1. 3 0
      CHANGELOG.md
  2. 1 1
      compose/__init__.py
  3. 1 1
      script/run/run.sh

+ 3 - 0
CHANGELOG.md

@@ -21,6 +21,9 @@ naming scheme accordingly before upgrading.
   to print a hash string for each service's configuration to facilitate rolling
   updates.
 
+- Added `--parallel` flag to the `docker-compose build` command, allowing
+  Compose to build up to 5 images simultaneously.
+
 - Output for the `pull` command now reports status / progress even when pulling
   multiple images in parallel.
 

+ 1 - 1
compose/__init__.py

@@ -1,4 +1,4 @@
 from __future__ import absolute_import
 from __future__ import unicode_literals
 
-__version__ = '1.23.0-rc3'
+__version__ = '1.23.0'

+ 1 - 1
script/run/run.sh

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