summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAanand Prasad <aanand.prasad@gmail.com>2016-07-06 16:08:07 -0700
committerJoffrey F <joffrey@docker.com>2016-07-27 13:22:07 -0700
commit60622026fa54453d6c49c7a1bbfd3ed93692e0c5 (patch)
treeec3850126baa07081a9fbeea7687d29fc9c92261
parent22c0779a498ee701c22b857669d3f43a0d404f27 (diff)
Bump 1.8.0-rc2
Signed-off-by: Aanand Prasad <aanand.prasad@gmail.com>
-rw-r--r--CHANGELOG.md8
-rw-r--r--compose/__init__.py2
-rw-r--r--docs/install.md6
-rwxr-xr-xscript/run/run.sh2
4 files changed, 10 insertions, 8 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 39ac8698..afa35820 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -4,6 +4,11 @@ Change log
1.8.0 (2016-06-14)
-----------------
+**Breaking Changes**
+
+- As announced in 1.7.0, `docker-compose rm` now removes containers
+ created by `docker-compose run` by default.
+
New Features
- Added `docker-compose bundle`, a command that builds a bundle file
@@ -13,9 +18,6 @@ New Features
- Added `docker-compose push`, a command that pushes service images
to a registry.
-- As announced in 1.7.0, `docker-compose rm` now removes containers
- created by `docker-compose run` by default.
-
- Compose now supports specifying a custom TLS version for
interaction with the Docker Engine using the `COMPOSE_TLS_VERSION`
environment variable.
diff --git a/compose/__init__.py b/compose/__init__.py
index 1dd11e79..bf8a6f30 100644
--- a/compose/__init__.py
+++ b/compose/__init__.py
@@ -1,4 +1,4 @@
from __future__ import absolute_import
from __future__ import unicode_literals
-__version__ = '1.8.0-rc1'
+__version__ = '1.8.0-rc2'
diff --git a/docs/install.md b/docs/install.md
index 5191a4b5..d1a11ab5 100644
--- a/docs/install.md
+++ b/docs/install.md
@@ -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.8.0-rc1/docker-compose-`uname -s`-`uname -m` > /usr/local/bin/docker-compose
+ curl -L https://github.com/docker/compose/releases/download/1.8.0-rc2/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).
@@ -54,7 +54,7 @@ which the release page specifies, in your terminal.
7. Test the installation.
$ docker-compose --version
- docker-compose version: 1.8.0-rc1
+ docker-compose version: 1.8.0-rc2
## Alternative install options
@@ -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.8.0-rc1/run.sh > /usr/local/bin/docker-compose
+ $ curl -L https://github.com/docker/compose/releases/download/1.8.0-rc2/run.sh > /usr/local/bin/docker-compose
$ chmod +x /usr/local/bin/docker-compose
## Master builds
diff --git a/script/run/run.sh b/script/run/run.sh
index f9199ce1..caf6ed11 100755
--- a/script/run/run.sh
+++ b/script/run/run.sh
@@ -15,7 +15,7 @@
set -e
-VERSION="1.8.0-rc1"
+VERSION="1.8.0-rc2"
IMAGE="docker/compose:$VERSION"