Skip to content

Commit

Permalink
Bump 1.6.2
Browse files Browse the repository at this point in the history
Signed-off-by: Aanand Prasad <aanand.prasad@gmail.com>
  • Loading branch information
aanand committed Feb 23, 2016
1 parent 796dc91 commit 4d72027
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 5 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
Change log
==========

1.6.2 (2016-02-23)
------------------

- Fixed a bug where connecting to a TLS-enabled Docker Engine would fail with
a certificate verification error.

1.6.1 (2016-02-23)
------------------

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.6.1'
__version__ = '1.6.2'
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/1.6.1/docker-compose-`uname -s`-`uname -m` > /usr/local/bin/docker-compose
curl -L https://github.com/docker/compose/releases/download/1.6.2/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.6.1
docker-compose version: 1.6.2


## Alternative install options
Expand All @@ -77,7 +77,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.6.1/run.sh > /usr/local/bin/docker-compose
$ curl -L https://github.com/docker/compose/releases/download/1.6.2/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.6.1"
VERSION="1.6.2"
IMAGE="docker/compose:$VERSION"


Expand Down

0 comments on commit 4d72027

Please sign in to comment.