summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoffrey F <f.joffrey@gmail.com>2015-01-12 14:18:30 -0800
committerJoffrey F <f.joffrey@gmail.com>2015-01-12 14:18:30 -0800
commitd382482378e1cee4da00aa64efdc2487fff73322 (patch)
tree8acacb89fe5bd7795d02890c3e6a527abf17a4f2
parent349c6c5b4f8b00e04a3d132f7cb941d7cea78da1 (diff)
parent53ef3c380c9ac100cb71c4442d56a26e6ff7174c (diff)
downloaddocker-py-d382482378e1cee4da00aa64efdc2487fff73322.tar.gz
Merge pull request #460 from docker/0.7.1-release
0.7.1 release
-rw-r--r--docker/version.py2
-rw-r--r--docs/api.md5
-rw-r--r--docs/change_log.md17
3 files changed, 21 insertions, 3 deletions
diff --git a/docker/version.py b/docker/version.py
index 5433541..691a48c 100644
--- a/docker/version.py
+++ b/docker/version.py
@@ -1 +1 @@
-version = "0.7.1-dev"
+version = "0.7.1"
diff --git a/docs/api.md b/docs/api.md
index a4e7dd1..cfd8b07 100644
--- a/docs/api.md
+++ b/docs/api.md
@@ -53,8 +53,9 @@ correct value (e.g `gzip`).
* fileobj: A file object to use as the Dockerfile. (Or a file-like object)
* nocache (bool): Don't use the cache when set to `True`
* rm (bool): Remove intermediate containers
-* stream (bool): Return a blocking generator you can iterate over to retrieve
- build output as it happens
+* stream (bool): *Deprecated for API version > 1.8 (always True)*.
+ Return a blocking generator you can iterate over to retrieve build output as
+ it happens
* timeout (int): HTTP timeout
* custom_context (bool): Optional if using `fileobj`
* encoding (str): The encoding for a stream. Set to `gzip` for compressing
diff --git a/docs/change_log.md b/docs/change_log.md
index 91c99d3..2470e51 100644
--- a/docs/change_log.md
+++ b/docs/change_log.md
@@ -1,6 +1,23 @@
Change Log
==========
+0.7.1
+-----
+
+### Bugfixes
+
+* `setup.py` now indicates a maximum version of requests to work around the
+ boot2docker / `assert_hostname` bug.
+* Removed invalid exception when using the Registry Hub's FQDN when pulling.
+* Fixed an issue where early HTTP errors weren't handled properly in streaming
+ responses.
+* Fixed a bug where sockets would close unexpectedly using Python 3.x
+* Various fixes for integration tests.
+
+### Miscellaneous
+
+* Small doc fixes
+
0.7.0
-----