mirror of https://github.com/docker/docker-py.git
Bumped version
This commit is contained in:
parent
a12432fba2
commit
ebaa5efe72
12
ChangeLog.md
12
ChangeLog.md
|
|
@ -1,6 +1,18 @@
|
||||||
ChangeLog
|
ChangeLog
|
||||||
=========
|
=========
|
||||||
|
|
||||||
|
0.1.2
|
||||||
|
-----
|
||||||
|
|
||||||
|
* Added a `quiet parameter` to `Client.build` (mirrors the `q` parameter in the API)
|
||||||
|
|
||||||
|
0.1.1
|
||||||
|
-----
|
||||||
|
|
||||||
|
* Fixed a bug where the build command would list tar contents before sending the request
|
||||||
|
* Fixed a bug in `Client.port`
|
||||||
|
|
||||||
|
|
||||||
0.1.0
|
0.1.0
|
||||||
-----
|
-----
|
||||||
* **This version introduces breaking changes!**
|
* **This version introduces breaking changes!**
|
||||||
|
|
|
||||||
2
setup.py
2
setup.py
|
|
@ -8,7 +8,7 @@ SOURCE_DIR = os.path.join(ROOT_DIR)
|
||||||
test_requirements = []
|
test_requirements = []
|
||||||
setup(
|
setup(
|
||||||
name="docker-py",
|
name="docker-py",
|
||||||
version='0.1.1',
|
version='0.1.2',
|
||||||
description="Python client for Docker.",
|
description="Python client for Docker.",
|
||||||
packages=['docker'],
|
packages=['docker'],
|
||||||
install_requires=['requests', 'six'] + test_requirements,
|
install_requires=['requests', 'six'] + test_requirements,
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue