Skip to content

Commit

Permalink
Bump 1.5.1
Browse files Browse the repository at this point in the history
Signed-off-by: Daniel Nephin <dnephin@docker.com>
  • Loading branch information
dnephin committed Nov 12, 2015
1 parent 82086a4 commit 4628e93
Show file tree
Hide file tree
Showing 4 changed files with 58 additions and 5 deletions.
53 changes: 53 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,59 @@
Change log
==========

1.5.1 (2015-11-12)
------------------

- Add the `--force-rm` option to `build`.

- Add the `ulimit` option for services in the Compose file.

- Fixed a bug where `up` would error with "service needs to be built" if
a service changed from using `image` to using `build`.

- Fixed a bug that would cause incorrect output of parallel operations
on some terminals.

- Fixed a bug that prevented a container from being recreated when the
mode of a `volumes_from` was changed.

- Fixed a regression in 1.5.0 where non-utf-8 unicode characters would cause
`up` or `logs` to crash.

- Fixed a regression in 1.5.0 where Compose would use a success exit status
code when a command fails due to an HTTP timeout communicating with the
docker daemon.

- Fixed a regression in 1.5.0 where `name` was being accepted as a valid
service option which would override the actual name of the service.

- When using `--x-networking` Compose no longer sets the hostname to the
container name.

- When using `--x-networking` Compose will only create the default network
if at least one container is using the network.

- When printings logs during `up` or `logs`, flush the output buffer after
each line to prevent buffering issues from hideing logs.

- Recreate a container if one of it's dependencies is being created.
Previously a container was only recreated if it's dependencies already
existed, but were being recreated as well.

- Add a warning when a `volume` in the Compose file is being ignored
and masked by a container volume from a previous container.

- Improve the output of `pull` when run without a tty.

- When using multiple Compose files, validate each before attempting to merge
them together. Previously invalid files would result in not helpful errors.

- Allow dashes in keys in the `environment` service option.

- Improve validation error messages by including the filename as part of the
error message.


1.5.0 (2015-11-03)
------------------

Expand Down
2 changes: 1 addition & 1 deletion compose/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
from __future__ import unicode_literals

__version__ = '1.5.0'
__version__ = '1.5.1'
6 changes: 3 additions & 3 deletions docs/install.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ which the release page specifies, in your terminal.

The following is an example command illustrating the format:

curl -L https://github.com/docker/compose/releases/download/VERSION_NUM/docker-compose-`uname -s`-`uname -m` > /usr/local/bin/docker-compose
curl -L https://github.com/docker/compose/releases/download/1.5.1/docker-compose-`uname -s`-`uname -m` > /usr/local/bin/docker-compose

If you have problems installing with `curl`, see
[Alternative Install Options](#alternative-install-options).
Expand All @@ -54,7 +54,7 @@ which the release page specifies, in your terminal.
7. Test the installation.

$ docker-compose --version
docker-compose version: 1.5.0
docker-compose version: 1.5.1


## Alternative install options
Expand All @@ -76,7 +76,7 @@ to get started.
Compose can also be run inside a container, from a small bash script wrapper.
To install compose as a container run:

$ curl -L https://github.com/docker/compose/releases/download/1.5.0/run.sh > /usr/local/bin/docker-compose
$ curl -L https://github.com/docker/compose/releases/download/1.5.1/run.sh > /usr/local/bin/docker-compose
$ chmod +x /usr/local/bin/docker-compose

## Master builds
Expand Down
2 changes: 1 addition & 1 deletion script/run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

set -e

VERSION="1.5.0"
VERSION="1.5.1"
IMAGE="docker/compose:$VERSION"


Expand Down

0 comments on commit 4628e93

Please sign in to comment.