From e6783d8cf33d0bd2654da01904b986a4af134daa Mon Sep 17 00:00:00 2001 From: Ulysses Souza Date: Thu, 10 Jan 2019 17:58:39 +0100 Subject: [PATCH] Bump 3.7.0 Signed-off-by: Ulysses Souza --- docker/version.py | 2 +- docs/change-log.md | 22 ++++++++++++++++++++++ 2 files changed, 23 insertions(+), 1 deletion(-) diff --git a/docker/version.py b/docker/version.py index b4cf22bb..c3edb8a3 100644 --- a/docker/version.py +++ b/docker/version.py @@ -1,2 +1,2 @@ -version = "3.7.0-dev" +version = "3.7.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 873db8ce..008a2ad2 100644 --- a/docs/change-log.md +++ b/docs/change-log.md @@ -1,6 +1,28 @@ Change log ========== +3.7.0 +----- + +[List of PRs / issues for this release](https://github.com/docker/docker-py/milestone/56?closed=1) + +### Features + +* Added support for multiplexed streams (for `attach` and `exec_start`). Learn + more at https://docker-py.readthedocs.io/en/stable/user_guides/multiplex.html +* Added the `use_config_proxy` parameter to the following methods: + `APIClient.build`, `APIClient.create_container`, `DockerClient.images.build` + and `DockerClient.containers.run` (`False` by default). **This parameter** + **will become `True` by default in the 4.0.0 release.** +* Placement preferences for Swarm services are better validated on the client + and documentation has been updated accordingly + +### Bugfixes + +* Fixed a bug where credential stores weren't queried for relevant registry + credentials with certain variations of the `config.json` file. +* `DockerClient.swarm.init` now returns a boolean value as advertised. + 3.6.0 -----