Skip to content

Commit 7f55a10

Browse files
author
shin-
committed
Bumped version to 0.3.1
1 parent 4ba4700 commit 7f55a10

File tree

3 files changed

+25
-2
lines changed

3 files changed

+25
-2
lines changed

ChangeLog.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,29 @@
11
ChangeLog
22
=========
33

4+
0.3.1
5+
-----
6+
7+
* Default API version is now 1.9
8+
* Streaming responses no longer yield blank lines.
9+
* `Client.create_container` now supports the `domainname` parameter.
10+
* `volumes_from` parameter in `Client.create_container` now supports
11+
iterables.
12+
* Auth credentials are provided to the docker daemon when using `Client.build`
13+
(new feature in API version 1.9)
14+
15+
16+
### Bugfixes
17+
18+
* Various fixes for response streams (`logs`, `pull`, etc.).
19+
* Fixed a bug with `Client.push` when using API version < 1.5
20+
* Fixed a bug with API version checks.
21+
22+
### Miscellaneous
23+
24+
* `mock` has been removed from the runtime requirements.
25+
* Added installation instructions in the README.
26+
427
0.3.0
528
-----
629

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ a Docker daemon, simply do:
2020

2121
```python
2222
c = docker.Client(base_url='unix://var/run/docker.sock',
23-
version='1.6',
23+
version='1.9',
2424
timeout=10)
2525
```
2626

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
setup(
1919
name="docker-py",
20-
version='0.3.0',
20+
version='0.3.1',
2121
description="Python client for Docker.",
2222
packages=['docker', 'docker.auth', 'docker.unixconn', 'docker.utils'],
2323
install_requires=requirements + test_requirements,

0 commit comments

Comments
 (0)