diff options
author | shin- <joffrey@dotcloud.com> | 2013-09-27 19:38:16 +0200 |
---|---|---|
committer | shin- <joffrey@dotcloud.com> | 2013-09-27 19:38:16 +0200 |
commit | 3754edc2673996e8598b617f7d32d4ce035f81c5 (patch) | |
tree | ff61953786d4778c61061cab743683c2fa0d3aa4 | |
parent | 3cfa23c206eb8c75e1db67d90479d862bdba8e26 (diff) | |
download | docker-py-0.2.1.tar.gz |
Bumped version to 0.2.10.2.1
-rw-r--r-- | ChangeLog.md | 12 | ||||
-rw-r--r-- | setup.py | 2 |
2 files changed, 13 insertions, 1 deletions
diff --git a/ChangeLog.md b/ChangeLog.md index a92046a..d94948a 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -1,6 +1,18 @@ ChangeLog ========= +0.2.1 +----- + +* Fixed a bug where the package would fail with an `ImportError` if requests + was installed using `apt-get` +* Fixed a bug where `Client.build` would fail if given a `path` parameter. +* Fixed several bugs in `Client.login`. It should now work with API versions + 1.4, 1.5. +* Please note that `Client.login` currently doesn't write auth to the + `.dockercfg` file, thus **auth is not persistent when using this method.** +* Improvements to the `tox.ini` file + 0.2.0 ----- @@ -11,7 +11,7 @@ with open('./requirements.txt') as requirements_txt: setup( name="docker-py", - version='0.2.0', + version='0.2.1', description="Python client for Docker.", packages=['docker'], install_requires=requirements + test_requirements, |