Skip to content

Commit 803ff50

Browse files
committed
Merge branch 'release'
2 parents 1e939be + fc481c4 commit 803ff50

File tree

4 files changed

+42
-3
lines changed

4 files changed

+42
-3
lines changed

docs/change_log.md

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

4+
1.10.3
5+
------
6+
7+
[List of PRs / issues for this release](https://github.com/docker/docker-py/issues?q=milestone%3A1.10.3+is%3Aclosed)
8+
9+
### Bugfixes
10+
11+
* Fixed an issue where identity tokens in configuration files weren't handled
12+
by the library.
13+
14+
### Miscellaneous
15+
16+
* Increased the default number of connection pools from 10 to 25. This number
17+
can now be configured using the `num_pools` parameter in the `Client`
18+
constructor.
19+
20+
21+
1.10.2
22+
------
23+
24+
[List of PRs / issues for this release](https://github.com/docker/docker-py/issues?q=milestone%3A1.10.0+is%3Aclosed)
25+
26+
### Bugfixes
27+
28+
* Updated the docker-pycreds dependency as it was causing issues for some
29+
users with dependency resolution in applications using docker-py.
30+
31+
32+
1.10.1
33+
------
34+
35+
[List of PRs / issues for this release](https://github.com/docker/docker-py/issues?q=milestone%3A1.10.0+is%3Aclosed)
36+
37+
### Bugfixes
38+
39+
* The docker.utils.types module was removed in favor of docker.types, but some
40+
applications imported it explicitly. It has been re-added with an import
41+
warning advising to use the new module path.
42+
443
1.10.0
544
------
645

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ six>=1.4.0
33
websocket-client==0.32.0
44
backports.ssl_match_hostname>=3.5 ; python_version < '3.5'
55
ipaddress==1.0.16 ; python_version < '3.3'
6-
docker-pycreds==0.2.0
6+
docker-pycreds==0.2.1

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

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
'requests >= 2.5.2, < 2.11',
1313
'six >= 1.4.0',
1414
'websocket-client >= 0.32.0',
15-
'docker-pycreds >= 0.2.0'
15+
'docker-pycreds >= 0.2.1'
1616
]
1717

1818
if sys.platform == 'win32':

0 commit comments

Comments
 (0)