summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoffrey F <joffrey@docker.com>2018-02-22 13:52:44 -0800
committerJoffrey F <joffrey@docker.com>2018-02-22 13:52:44 -0800
commit1d85818f4caeba437d4200a6b8f870beb28ca5a2 (patch)
treefa7cdb10ea7a8d5cc861ea605f1999c213a12757
parent9a4cc53c52b9dbb1dca9562d973d8d7f50a42f66 (diff)
downloaddocker-py-3.1.0-release.tar.gz
Bump 3.1.03.1.0-release
Signed-off-by: Joffrey F <joffrey@docker.com>
-rw-r--r--docker/version.py2
-rw-r--r--docs/change-log.md30
2 files changed, 31 insertions, 1 deletions
diff --git a/docker/version.py b/docker/version.py
index fc56840..c79cf93 100644
--- a/docker/version.py
+++ b/docker/version.py
@@ -1,2 +1,2 @@
-version = "3.1.0-dev"
+version = "3.1.0"
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 8ae88ef..ceab083 100644
--- a/docs/change-log.md
+++ b/docs/change-log.md
@@ -1,6 +1,36 @@
Change log
==========
+3.1.0
+-----
+
+[List of PRs / issues for this release](https://github.com/docker/docker-py/milestone/44?closed=1)
+
+### Features
+
+* Added support for `device_cgroup_rules` in host config
+* Added support for `generic_resources` when creating a `Resources`
+ object.
+* Added support for a configurable `chunk_size` parameter in `export`,
+ `get_archive` and `get_image` (`Image.save`)
+* Added a `force_update` method to the `Service` class.
+* In `Service.update`, when the `force_update` parameter is set to `True`,
+ the current `force_update` counter is incremented by one in the update
+ request.
+
+### Bugfixes
+
+* Fixed a bug where authentication through `login()` was being ignored if the
+ SDK was configured to use a credential store.
+* Fixed a bug where download methods would use an absurdly small chunk size,
+ leading to slow data retrieval
+* Fixed a bug where using `DockerClient.images.pull` to pull an image by digest
+ would lead to an exception being raised.
+* `.dockerignore` rules should now be respected as defined by the spec,
+ including respect for last-line precedence and proper handling of absolute
+ paths
+* The `pass` credential store is now properly supported.
+
3.0.1
-----