summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoffrey F <joffrey@docker.com>2016-10-14 16:58:23 -0700
committerJoffrey F <joffrey@docker.com>2016-10-14 17:02:40 -0700
commita6f12777f17dd0a4f7d97908720dc02781f762fd (patch)
tree13df09828dc40e6f89b1f6964cc6362bd293e48c
parent213dc8f757d22e569faa985ef221f8d53abb2fa6 (diff)
downloaddocker-py-a6f12777f17dd0a4f7d97908720dc02781f762fd.tar.gz
Bump version to 1.10.4 ; Update changelog
Signed-off-by: Joffrey F <joffrey@docker.com>
-rw-r--r--docker/version.py2
-rw-r--r--docs/change_log.md22
2 files changed, 23 insertions, 1 deletions
diff --git a/docker/version.py b/docker/version.py
index 2bf8436..12eb03b 100644
--- a/docker/version.py
+++ b/docker/version.py
@@ -1,2 +1,2 @@
-version = "1.10.3"
+version = "1.10.4"
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 e32df1e..17490d3 100644
--- a/docs/change_log.md
+++ b/docs/change_log.md
@@ -1,6 +1,28 @@
Change Log
==========
+1.10.4
+------
+
+[List of PRs / issues for this release](https://github.com/docker/docker-py/milestone/24?closed=1)
+
+### Bugfixes
+
+* Fixed an issue where `RestartPolicy.condition_types.ON_FAILURE` would yield
+ an invalid value.
+* Fixed an issue where the SSL connection adapter would receive an invalid
+ argument.
+* Fixed an issue that caused the Client to fail to reach API endpoints when
+ the provided `base_url` had a trailing slash.
+* Fixed a bug where some `environment` values in `create_container`
+ containing unicode characters would raise an encoding error.
+* Fixed a number of issues tied with named pipe transport on Windows.
+
+### Miscellaneous
+
+* Adjusted version requirements for the `requests` library.
+
+
1.10.3
------