Skip to content

Commit

Permalink
Bump 1.10.0-rc2
Browse files Browse the repository at this point in the history
Signed-off-by: Joffrey F <joffrey@docker.com>
  • Loading branch information
shin- committed Jan 11, 2017
1 parent 71dd874 commit fb241d0
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 4 deletions.
12 changes: 10 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,6 @@ Change log
version requires to be used with Docker Engine 1.13 or above and is
specifically designed to work with the `docker stack` commands.

- Added support for the `stop_grace_period` option in service definitions.

#### Compose file version 2.1 and up

- Healthcheck configuration can now be done in the service definition using
Expand All @@ -30,6 +28,10 @@ Change log

- Compose now adds identifying labels to networks and volumes it creates

#### Compose file version 2.0 and up

- Added support for the `stop_grace_period` option in service definitions.

### Bugfixes

- Colored output now works properly on Windows.
Expand All @@ -40,6 +42,12 @@ Change log
- Networks created by Compose are now always made attachable
(Compose files v2.1 and up).

- Fixed a bug where falsy values of `COMPOSE_CONVERT_WINDOWS_PATHS`
(`0`, `false`, empty value) were being interpreted as true.

- Fixed a bug where forward slashes in some .dockerignore patterns weren't
being parsed correctly on Windows


1.9.0 (2016-11-16)
-----------------
Expand Down
2 changes: 1 addition & 1 deletion compose/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from __future__ import absolute_import
from __future__ import unicode_literals

__version__ = '1.10.0-rc1'
__version__ = '1.10.0-rc2'
2 changes: 1 addition & 1 deletion script/run/run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

set -e

VERSION="1.10.0-rc1"
VERSION="1.10.0-rc2"
IMAGE="docker/compose:$VERSION"


Expand Down

0 comments on commit fb241d0

Please sign in to comment.