diff options
author | Joffrey F <joffrey@docker.com> | 2016-02-04 09:39:02 -0800 |
---|---|---|
committer | Joffrey F <joffrey@docker.com> | 2016-02-04 09:39:02 -0800 |
commit | a11dc87bd35068304c9d915bd711cbb114cb12c1 (patch) | |
tree | 5d9f4623290d9aad215695d35d4e56ef11c1b822 | |
parent | a6a562a68102f548e87781a338219685b066c412 (diff) | |
download | docker-py-release-1.7.0.tar.gz |
Bump to stable versionrelease-1.7.0
Update ChangeLog
Signed-off-by: Joffrey F <joffrey@docker.com>
-rw-r--r-- | docker/version.py | 2 | ||||
-rw-r--r-- | docs/change_log.md | 33 |
2 files changed, 34 insertions, 1 deletions
diff --git a/docker/version.py b/docker/version.py index ec9c8b4..662c71e 100644 --- a/docker/version.py +++ b/docker/version.py @@ -1,2 +1,2 @@ -version = "1.7.0-rc3" +version = "1.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 d0590a4..d6b5767 100644 --- a/docs/change_log.md +++ b/docs/change_log.md @@ -1,6 +1,39 @@ Change Log ========== +1.7.0 +----- + +[List of PRs / issues for this release](https://github.com/docker/docker-py/issues?q=milestone%3A1.7.0+is%3Aclosed) + +### Features + +* Added support for cusom IPAM configuration in `Client.create_network` +* Added input support to `Client.exec_create` +* Added support for `stop_signal` in `Client.create_host_config` +* Added support for custom HTTP headers in Docker config file. +* Added support for unspecified transfer protocol in `base_url` when TLS is + enabled. + + +### Bugfixes + +* Fixed a bug where the `filters` parameter in `Client.volumes` would not be + applied properly. +* Fixed a bug where memory limits would parse to incorrect values. +* Fixed a bug where the `devices` parameter in `Client.create_host_config` + would sometimes be misinterpreted. +* Fixed a bug where instantiating a `Client` object would sometimes crash if + `base_url` was unspecified. +* Fixed a bug where an error message related to TLS configuration would link + to a non-existent (outdated) docs page. + + +### Miscellaneous + +* Processing of `.dockerignore` has been made significantly faster. +* Dropped explicit support for Python 3.2 + 1.6.0 ----- |