summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoffrey F <f.joffrey@gmail.com>2016-02-22 12:42:24 -0800
committerJoffrey F <f.joffrey@gmail.com>2016-02-22 12:42:24 -0800
commitffe524151f6bbcfe4f8dcf1bc1c6ecbd719f4ebe (patch)
treeed7f3da83a61078fd6c6e6a18ef2197ec39d315b
parentc3a66cc5999a5435b81769ac758d411d34c995c4 (diff)
parent498c7d4837b4accaf88880830de096eddb8ef353 (diff)
downloaddocker-py-ffe524151f6bbcfe4f8dcf1bc1c6ecbd719f4ebe.tar.gz
Merge pull request #944 from docker/1.7.1-release1.7.1
1.7.1 release
-rw-r--r--docker/version.py2
-rw-r--r--docs/change_log.md20
2 files changed, 21 insertions, 1 deletions
diff --git a/docker/version.py b/docker/version.py
index 4efc6eb..32f9587 100644
--- a/docker/version.py
+++ b/docker/version.py
@@ -1,2 +1,2 @@
-version = "1.8.0-dev"
+version = "1.7.1"
version_info = tuple([int(d) for d in version.split("-")[0].split(".")])
diff --git a/docs/change_log.md b/docs/change_log.md
index d6b5767..b9b4fbb 100644
--- a/docs/change_log.md
+++ b/docs/change_log.md
@@ -1,6 +1,26 @@
Change Log
==========
+1.7.1
+-----
+
+[List of PRs / issues for this release](https://github.com/docker/docker-py/issues?q=milestone%3A1.7.1+is%3Aclosed)
+
+### Features
+
+* Added support for `shm_size` in `Client.create_host_config`
+
+### Bugfixes
+
+* Fixed a bug where Dockerfile would sometimes be excluded from the build
+ context.
+* Fixed a bug where a docker config file containing unknown keys would raise
+ an exception.
+* Fixed an issue with SSL connections behaving improperly when pyOpenSSL
+ was installed in the same environment.
+* Several TLS configuration improvements
+
+
1.7.0
-----