Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions docker/utils/types.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# Compatibility module. See https://github.com/docker/docker-py/issues/1196

import warnings

from ..types import Ulimit, LogConfig # flake8: noqa

warnings.warn('docker.utils.types is now docker.types', ImportWarning)
2 changes: 1 addition & 1 deletion docker/version.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
version = "1.10.0"
version = "1.10.1"
version_info = tuple([int(d) for d in version.split("-")[0].split(".")])
11 changes: 11 additions & 0 deletions docs/change_log.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,17 @@
Change Log
==========

1.10.1
------

[List of PRs / issues for this release](https://github.com/docker/docker-py/issues?q=milestone%3A1.10.0+is%3Aclosed)

### Bugfixes

* The docker.utils.types module was removed in favor of docker.types, but some
applications imported it explicitly. It has been re-added with an import
warning advising to use the new module path.

1.10.0
------

Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
universal = 1

[metadata]
description_file = README.md
description_file = README.rst