Bumped version to 0.3.1

This commit is contained in:
shin- 2014-04-04 18:18:58 +02:00
parent 4ba47000d3
commit 7f55a101f8
3 changed files with 25 additions and 2 deletions

View File

@ -1,6 +1,29 @@
ChangeLog
=========
0.3.1
-----
* Default API version is now 1.9
* Streaming responses no longer yield blank lines.
* `Client.create_container` now supports the `domainname` parameter.
* `volumes_from` parameter in `Client.create_container` now supports
iterables.
* Auth credentials are provided to the docker daemon when using `Client.build`
(new feature in API version 1.9)
### Bugfixes
* Various fixes for response streams (`logs`, `pull`, etc.).
* Fixed a bug with `Client.push` when using API version < 1.5
* Fixed a bug with API version checks.
### Miscellaneous
* `mock` has been removed from the runtime requirements.
* Added installation instructions in the README.
0.3.0
-----

View File

@ -20,7 +20,7 @@ a Docker daemon, simply do:
```python
c = docker.Client(base_url='unix://var/run/docker.sock',
version='1.6',
version='1.9',
timeout=10)
```

View File

@ -17,7 +17,7 @@ with open(requirements_file) as requirements_txt:
setup(
name="docker-py",
version='0.3.0',
version='0.3.1',
description="Python client for Docker.",
packages=['docker', 'docker.auth', 'docker.unixconn', 'docker.utils'],
install_requires=requirements + test_requirements,