Bump 3.7.0

Signed-off-by: Ulysses Souza <ulysses.souza@docker.com>
diff --git a/docker/version.py b/docker/version.py
index b4cf22b..c3edb8a 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 873db8c..008a2ad 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
 -----