Skip to content

Commit 36f3480

Browse files
committed
Merge pull request #801 from docker/1.5.0-release
1.5.0 release
2 parents 16247df + 5d95f24 commit 36f3480

File tree

3 files changed

+46
-1
lines changed

3 files changed

+46
-1
lines changed

docker/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
version = "1.5.0-dev"
1+
version = "1.5.0"
22
version_info = tuple([int(d) for d in version.split("-")[0].split(".")])

docs/change_log.md

+37
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,43 @@
11
Change Log
22
==========
33

4+
1.5.0
5+
-----
6+
7+
[List of PRs / issues for this release](https://github.com/docker/docker-py/issues?q=milestone%3A1.5.0+is%3Aclosed)
8+
9+
### Features
10+
11+
* Added support for the networking API introduced in Docker 1.9.0
12+
(`Client.networks`, `Client.create_network`, `Client.remove_network`,
13+
`Client.inspect_network`, `Client.connect_container_to_network`,
14+
`Client.disconnect_container_from_network`).
15+
* Added support for the volumes API introduced in Docker 1.9.0
16+
(`Client.volumes`, `Client.create_volume`, `Client.inspect_volume`,
17+
`Client.remove_volume`).
18+
* Added support for the `group_add` parameter in `create_host_config`.
19+
* Added support for the CPU CFS (`cpu_quota` and `cpu_period`) parameteres
20+
in `create_host_config`.
21+
* Added support for the archive API endpoint (`Client.get_archive`,
22+
`Client.put_archive`).
23+
* Added support for `ps_args` parameter in `Client.top`.
24+
25+
26+
### Bugfixes
27+
28+
* Fixed a bug where specifying volume binds with unicode characters would
29+
fail.
30+
* Fixed a bug where providing an explicit protocol in `Client.port` would fail
31+
to yield the expected result.
32+
* Fixed a bug where the priority protocol returned by `Client.port` would be UDP
33+
instead of the expected TCP.
34+
35+
### Miscellaneous
36+
37+
* Broke up Client code into several files to facilitate maintenance and
38+
contribution.
39+
* Added contributing guidelines to the repository.
40+
441
1.4.0
542
-----
643

docs/hostconfig.md

+8
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,14 @@ for example:
101101
allowed to consume.
102102
* group_add (list): List of additional group names and/or IDs that the
103103
container process will run as.
104+
* devices (list): A list of devices to add to the container specified as dicts
105+
in the form:
106+
```
107+
{ "PathOnHost": "/dev/deviceName",
108+
"PathInContainer": "/dev/deviceName",
109+
"CgroupPermissions": "mrw"
110+
}
111+
```
104112

105113
**Returns** (dict) HostConfig dictionary
106114

0 commit comments

Comments
 (0)