Skip to content

Commit c2b4c8e

Browse files
authored
Merge pull request #1198 from docker/1.10.1-release
1.10.1 release
2 parents e045331 + 8abb8ee commit c2b4c8e

File tree

4 files changed

+20
-2
lines changed

4 files changed

+20
-2
lines changed

docker/utils/types.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# Compatibility module. See https://github.com/docker/docker-py/issues/1196
2+
3+
import warnings
4+
5+
from ..types import Ulimit, LogConfig # flake8: noqa
6+
7+
warnings.warn('docker.utils.types is now docker.types', ImportWarning)

docker/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
version = "1.10.0"
1+
version = "1.10.1"
22
version_info = tuple([int(d) for d in version.split("-")[0].split(".")])

docs/change_log.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,17 @@
11
Change Log
22
==========
33

4+
1.10.1
5+
------
6+
7+
[List of PRs / issues for this release](https://github.com/docker/docker-py/issues?q=milestone%3A1.10.0+is%3Aclosed)
8+
9+
### Bugfixes
10+
11+
* The docker.utils.types module was removed in favor of docker.types, but some
12+
applications imported it explicitly. It has been re-added with an import
13+
warning advising to use the new module path.
14+
415
1.10.0
516
------
617

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
universal = 1
33

44
[metadata]
5-
description_file = README.md
5+
description_file = README.rst

0 commit comments

Comments
 (0)