Skip to content

Commit 2ecc3ad

Browse files
committed
Bump 3.2.0
Signed-off-by: Joffrey F <[email protected]>
1 parent bedabbf commit 2ecc3ad

File tree

3 files changed

+21
-1
lines changed

3 files changed

+21
-1
lines changed

docker/version.py

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

docs/change-log.md

+19
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,30 @@
11
Change log
22
==========
33

4+
3.2.0
5+
-----
6+
7+
[List of PRs/ issues for this release](https://github.com/docker/docker-py/milestone/45?closed=1)
8+
9+
### Features
10+
11+
* Generators returned by `attach()`, `logs()` and `events()` now have a
12+
`cancel()` method to let consumers stop the iteration client-side.
13+
* `build()` methods can now handle Dockerfiles supplied outside of the
14+
build context.
15+
* Added `sparse` argument to `DockerClient.containers.list()`
16+
* Added `isolation` parameter to `build()` methods.
17+
* Added `close()` method to `DockerClient`
18+
* Added `APIClient.inspect_distribution()` method and
19+
`DockerClient.images.get_registry_data()`
20+
* The latter returns an instance of the new `RegistryData` class
21+
422
3.1.4
523
-----
624

725
[List of PRs / issues for this release](https://github.com/docker/docker-py/milestone/48?closed=1)
826

27+
### Bugfixes
928

1029
* Fixed a bug where build contexts containing directory symlinks would produce
1130
invalid tar archives

docs/client.rst

+1
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ Client reference
2626
.. autoattribute:: swarm
2727
.. autoattribute:: volumes
2828

29+
.. automethod:: close()
2930
.. automethod:: df()
3031
.. automethod:: events()
3132
.. automethod:: info()

0 commit comments

Comments
 (0)