mirror of https://github.com/docker/docker-py.git
Bumped version to 0.3.1
This commit is contained in:
parent
4ba47000d3
commit
7f55a101f8
23
ChangeLog.md
23
ChangeLog.md
|
@ -1,6 +1,29 @@
|
||||||
ChangeLog
|
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
|
0.3.0
|
||||||
-----
|
-----
|
||||||
|
|
||||||
|
|
|
@ -20,7 +20,7 @@ a Docker daemon, simply do:
|
||||||
|
|
||||||
```python
|
```python
|
||||||
c = docker.Client(base_url='unix://var/run/docker.sock',
|
c = docker.Client(base_url='unix://var/run/docker.sock',
|
||||||
version='1.6',
|
version='1.9',
|
||||||
timeout=10)
|
timeout=10)
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
2
setup.py
2
setup.py
|
@ -17,7 +17,7 @@ with open(requirements_file) as requirements_txt:
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
name="docker-py",
|
name="docker-py",
|
||||||
version='0.3.0',
|
version='0.3.1',
|
||||||
description="Python client for Docker.",
|
description="Python client for Docker.",
|
||||||
packages=['docker', 'docker.auth', 'docker.unixconn', 'docker.utils'],
|
packages=['docker', 'docker.auth', 'docker.unixconn', 'docker.utils'],
|
||||||
install_requires=requirements + test_requirements,
|
install_requires=requirements + test_requirements,
|
||||||
|
|
Loading…
Reference in New Issue