File tree Expand file tree Collapse file tree 2 files changed +38
-1
lines changed Expand file tree Collapse file tree 2 files changed +38
-1
lines changed Original file line number Diff line number Diff line change 1
- version = "1.5.0-dev "
1
+ version = "1.5.0"
2
2
version_info = tuple ([int (d ) for d in version .split ("-" )[0 ].split ("." )])
Original file line number Diff line number Diff line change 1
1
Change Log
2
2
==========
3
3
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
+
4
41
1.4.0
5
42
-----
6
43
You can’t perform that action at this time.
0 commit comments