summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoffrey F <joffrey@docker.com>2016-06-16 12:46:46 -0700
committerJoffrey F <joffrey@docker.com>2016-06-16 12:46:46 -0700
commita2160145cf5fca580daf5579f87f2d42f03d4e14 (patch)
treeff01abaaaf5a4c7137b6929112a9c7bd5b808f2c
parent538a1db9dd210ee4824f0203341586b9aa3f2419 (diff)
downloaddocker-py-a2160145cf5fca580daf5579f87f2d42f03d4e14.tar.gz
1.9.0 RC1
Signed-off-by: Joffrey F <joffrey@docker.com>
-rw-r--r--docker/version.py2
-rw-r--r--docs/change_log.md24
2 files changed, 24 insertions, 2 deletions
diff --git a/docker/version.py b/docker/version.py
index 4b7b86c..a80bee1 100644
--- a/docker/version.py
+++ b/docker/version.py
@@ -1,2 +1,2 @@
-version = "1.8.1"
+version = "1.9.0-rc1"
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 6db720a..2d80022 100644
--- a/docs/change_log.md
+++ b/docs/change_log.md
@@ -1,10 +1,32 @@
Change Log
==========
+1.9.0
+-----
+
+[List of PRs / issues for this release](https://github.com/docker/docker-py/issues?q=milestone%3A1.9.0+is%3Aclosed)
+
+### Features
+
+* Added **experimental** support for Windows named pipes (`npipe://` protocol).
+* Added support for Block IO constraints in `Client.create_host_config`. This
+ includes parameters `blkio_weight`, `blkio_weight_device`, `device_read_bps`,
+ `device_write_bps`, `device_read_iops` and `device_write_iops`.
+* Added support for the `internal` param in `Client.create_network`.
+* Added support for `ipv4_address` and `ipv6_address` in utils function
+ `create_endpoint_config`.
+
+### Bugfixes
+
+* Fixed an issue where the HTTP timeout on streaming responses would sometimes
+ be set incorrectly.
+* Fixed an issue where explicit relative paths in `.dockerignore` files were
+ not being recognized.
+
1.8.1
-----
-[List of PRs / issues for this release](https://github.com/docker/docker-py/issues?q=milestone%3A1.8.0+is%3Aclosed)
+[List of PRs / issues for this release](https://github.com/docker/docker-py/issues?q=milestone%3A1.8.1+is%3Aclosed)
### Bugfixes