Skip to content

Commit bef23fe

Browse files
committed
Merge pull request #582 from docker/1.2.2-release
1.2.2 release
2 parents 0b78d7a + b8e950c commit bef23fe

File tree

3 files changed

+11
-2
lines changed

3 files changed

+11
-2
lines changed

docker/client.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -898,7 +898,8 @@ def pull(self, repository, tag=None, stream=False,
898898
# auth_config needs to be a dict in the format used by
899899
# auth.py username , password, serveraddress, email
900900
headers['X-Registry-Auth'] = auth.encode_header(
901-
authcfg)
901+
authcfg
902+
)
902903
else:
903904
headers['X-Registry-Auth'] = auth.encode_header(auth_config)
904905

docker/version.py

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

docs/change_log.md

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

4+
1.2.2
5+
-----
6+
7+
### Bugfixes
8+
9+
* Fixed a bug where parameters passed to `Client.exec_resize` would be ignored (#576)
10+
* Fixed a bug where auth config wouldn't be resolved properly in `Client.pull` (#577)
11+
412
1.2.1
513
-----
614

0 commit comments

Comments
 (0)