Skip to content

Commit 3eb93f6

Browse files
committed
Bump version
Signed-off-by: Joffrey F <[email protected]>
1 parent 15ac73a commit 3eb93f6

File tree

3 files changed

+47
-2
lines changed

3 files changed

+47
-2
lines changed

docker/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
version = "1.10.0-dev"
1+
version = "1.10.0"
22
version_info = tuple([int(d) for d in version.split("-")[0].split(".")])

docs/change_log.md

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,49 @@
11
Change Log
22
==========
33

4+
1.10.0
5+
------
6+
7+
[List of PRs / issues for this release](https://github.com/docker/docker-py/issues?q=milestone%3A1.10.0+is%3Aclosed)
8+
9+
### Features
10+
11+
* Added swarm mode and service management methods. See the documentation for
12+
details.
13+
* Added support for IPv6 Docker host addresses in the `Client` constructor.
14+
* Added (read-only) support for the Docker credentials store.
15+
* Added support for custom `auth_config` in `Client.push`.
16+
* Added support for `labels` in `Client.create_volume`.
17+
* Added support for `labels` and `enable_ipv6` in `Client.create_network`.
18+
* Added support for `force` param in
19+
`Client.disconnect_container_from_network`.
20+
* Added support for `pids_limit`, `sysctls`, `userns_mode`, `cpuset_cpus`,
21+
`cpu_shares`, `mem_reservation` and `kernel_memory` parameters in
22+
`Client.create_host_config`.
23+
* Added support for `link_local_ips` in `create_endpoint_config`.
24+
* Added support for a `changes` parameter in `Client.import_image`.
25+
* Added support for a `version` parameter in `Client.from_env`.
26+
27+
### Bugfixes
28+
29+
* Fixed a bug where `Client.build` would crash if the `config.json` file
30+
contained a `HttpHeaders` entry.
31+
* Fixed a bug where passing `decode=True` in some streaming methods would
32+
crash when the daemon's response had an unexpected format.
33+
* Fixed a bug where `environment` values with unicode characters weren't
34+
handled properly in `create_container`.
35+
* Fixed a bug where using the `npipe` protocol would sometimes break with
36+
`ValueError: buffer size must be strictly positive`.
37+
38+
### Miscellaneous
39+
40+
* Fixed an issue where URL-quoting in docker-py was inconsistent with the
41+
quoting done by the Docker CLI client.
42+
* The client now sends TCP upgrade headers to hint potential proxies about
43+
connection hijacking.
44+
* The client now defaults to using the `npipe` protocol on Windows.
45+
46+
447
1.9.0
548
-----
649

setup.cfg

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
11
[bdist_wheel]
2-
32
universal = 1
3+
4+
[metadata]
5+
description_file = README.md

0 commit comments

Comments
 (0)