From ebaa5efe724dbc5f3f43228450e9735db5b7b401 Mon Sep 17 00:00:00 2001 From: shin- Date: Thu, 25 Jul 2013 18:32:13 +0200 Subject: [PATCH] Bumped version --- ChangeLog.md | 12 ++++++++++++ setup.py | 2 +- 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/ChangeLog.md b/ChangeLog.md index e42c806c..ca3b2b3f 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -1,6 +1,18 @@ 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 ----- * **This version introduces breaking changes!** diff --git a/setup.py b/setup.py index 7d7cb39f..c8eab052 100644 --- a/setup.py +++ b/setup.py @@ -8,7 +8,7 @@ SOURCE_DIR = os.path.join(ROOT_DIR) test_requirements = [] setup( name="docker-py", - version='0.1.1', + version='0.1.2', description="Python client for Docker.", packages=['docker'], install_requires=['requests', 'six'] + test_requirements,