Skip to content

Commit

Permalink
Bump 3.2.0
Browse files Browse the repository at this point in the history
Signed-off-by: Joffrey F <joffrey@docker.com>
  • Loading branch information
shin- committed Mar 29, 2018
1 parent bedabbf commit 2ecc3ad
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 1 deletion.
2 changes: 1 addition & 1 deletion docker/version.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
version = "3.1.4"
version = "3.2.0"
version_info = tuple([int(d) for d in version.split("-")[0].split(".")])
19 changes: 19 additions & 0 deletions docs/change-log.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,30 @@
Change log
==========

3.2.0
-----

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

### Features

* Generators returned by `attach()`, `logs()` and `events()` now have a
`cancel()` method to let consumers stop the iteration client-side.
* `build()` methods can now handle Dockerfiles supplied outside of the
build context.
* Added `sparse` argument to `DockerClient.containers.list()`
* Added `isolation` parameter to `build()` methods.
* Added `close()` method to `DockerClient`
* Added `APIClient.inspect_distribution()` method and
`DockerClient.images.get_registry_data()`
* The latter returns an instance of the new `RegistryData` class

3.1.4
-----

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

### Bugfixes

* Fixed a bug where build contexts containing directory symlinks would produce
invalid tar archives
Expand Down
1 change: 1 addition & 0 deletions docs/client.rst
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ Client reference
.. autoattribute:: swarm
.. autoattribute:: volumes

.. automethod:: close()
.. automethod:: df()
.. automethod:: events()
.. automethod:: info()
Expand Down

0 comments on commit 2ecc3ad

Please sign in to comment.