mirror of https://github.com/docker/docker-py.git
Bumped version to 0.2.1
This commit is contained in:
parent
3cfa23c206
commit
3754edc267
12
ChangeLog.md
12
ChangeLog.md
|
@ -1,6 +1,18 @@
|
||||||
ChangeLog
|
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
|
0.2.0
|
||||||
-----
|
-----
|
||||||
|
|
||||||
|
|
2
setup.py
2
setup.py
|
@ -11,7 +11,7 @@ with open('./requirements.txt') as requirements_txt:
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
name="docker-py",
|
name="docker-py",
|
||||||
version='0.2.0',
|
version='0.2.1',
|
||||||
description="Python client for Docker.",
|
description="Python client for Docker.",
|
||||||
packages=['docker'],
|
packages=['docker'],
|
||||||
install_requires=requirements + test_requirements,
|
install_requires=requirements + test_requirements,
|
||||||
|
|
Loading…
Reference in New Issue