diff options
author | Joffrey F <joffrey@docker.com> | 2016-09-07 17:42:45 -0700 |
---|---|---|
committer | Joffrey F <joffrey@docker.com> | 2016-09-08 12:00:25 -0700 |
commit | 3eb93f666289a1e4b5099a83e1c18950e8dd9d78 (patch) | |
tree | 4a61bbb056a0b367765e9a447e29ee280c7913a8 | |
parent | 15ac73a22dd8bf7ba6b9f2db757064c216bbb83f (diff) | |
download | docker-py-1.10.0-release.tar.gz |
Bump version1.10.0-release
Signed-off-by: Joffrey F <joffrey@docker.com>
-rw-r--r-- | docker/version.py | 2 | ||||
-rw-r--r-- | docs/change_log.md | 43 | ||||
-rw-r--r-- | setup.cfg | 4 |
3 files changed, 47 insertions, 2 deletions
diff --git a/docker/version.py b/docker/version.py index dea7b7c..40accf1 100644 --- a/docker/version.py +++ b/docker/version.py @@ -1,2 +1,2 @@ -version = "1.10.0-dev" +version = "1.10.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 089c003..d37e48f 100644 --- a/docs/change_log.md +++ b/docs/change_log.md @@ -1,6 +1,49 @@ Change Log ========== +1.10.0 +------ + +[List of PRs / issues for this release](https://github.com/docker/docker-py/issues?q=milestone%3A1.10.0+is%3Aclosed) + +### Features + +* Added swarm mode and service management methods. See the documentation for + details. +* Added support for IPv6 Docker host addresses in the `Client` constructor. +* Added (read-only) support for the Docker credentials store. +* Added support for custom `auth_config` in `Client.push`. +* Added support for `labels` in `Client.create_volume`. +* Added support for `labels` and `enable_ipv6` in `Client.create_network`. +* Added support for `force` param in + `Client.disconnect_container_from_network`. +* Added support for `pids_limit`, `sysctls`, `userns_mode`, `cpuset_cpus`, + `cpu_shares`, `mem_reservation` and `kernel_memory` parameters in + `Client.create_host_config`. +* Added support for `link_local_ips` in `create_endpoint_config`. +* Added support for a `changes` parameter in `Client.import_image`. +* Added support for a `version` parameter in `Client.from_env`. + +### Bugfixes + +* Fixed a bug where `Client.build` would crash if the `config.json` file + contained a `HttpHeaders` entry. +* Fixed a bug where passing `decode=True` in some streaming methods would + crash when the daemon's response had an unexpected format. +* Fixed a bug where `environment` values with unicode characters weren't + handled properly in `create_container`. +* Fixed a bug where using the `npipe` protocol would sometimes break with + `ValueError: buffer size must be strictly positive`. + +### Miscellaneous + +* Fixed an issue where URL-quoting in docker-py was inconsistent with the + quoting done by the Docker CLI client. +* The client now sends TCP upgrade headers to hint potential proxies about + connection hijacking. +* The client now defaults to using the `npipe` protocol on Windows. + + 1.9.0 ----- @@ -1,3 +1,5 @@ [bdist_wheel] - universal = 1 + +[metadata] +description_file = README.md |