Skip to content

Commit

Permalink
Merge pull request #582 from docker/1.2.2-release
Browse files Browse the repository at this point in the history
1.2.2 release
  • Loading branch information
shin- committed May 4, 2015
2 parents 0b78d7a + b8e950c commit bef23fe
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 2 deletions.
3 changes: 2 additions & 1 deletion docker/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -898,7 +898,8 @@ def pull(self, repository, tag=None, stream=False,
# auth_config needs to be a dict in the format used by
# auth.py username , password, serveraddress, email
headers['X-Registry-Auth'] = auth.encode_header(
authcfg)
authcfg
)
else:
headers['X-Registry-Auth'] = auth.encode_header(auth_config)

Expand Down
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.2.2-dev"
version = "1.2.2"
version_info = tuple([int(d) for d in version.replace("-dev", "").split(".")])
8 changes: 8 additions & 0 deletions docs/change_log.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
Change Log
==========

1.2.2
-----

### Bugfixes

* Fixed a bug where parameters passed to `Client.exec_resize` would be ignored (#576)
* Fixed a bug where auth config wouldn't be resolved properly in `Client.pull` (#577)

1.2.1
-----

Expand Down

0 comments on commit bef23fe

Please sign in to comment.