summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog.md5
-rw-r--r--README.md2
-rw-r--r--setup.py2
3 files changed, 7 insertions, 2 deletions
diff --git a/ChangeLog.md b/ChangeLog.md
index ca3b2b3..29651c6 100644
--- a/ChangeLog.md
+++ b/ChangeLog.md
@@ -1,6 +1,11 @@
ChangeLog
=========
+0.1.3
+-----
+
+* The client now tries to load the auth config from `~/.dockercfg`. This is necessary to use the push command if API version is >1.0
+
0.1.2
-----
diff --git a/README.md b/README.md
index fad1c14..8830de4 100644
--- a/README.md
+++ b/README.md
@@ -71,7 +71,7 @@ Identical to the `docker port` command.
* `c.pull(repository, tag=None, registry=None)`
Identical to the `docker pull` command.
-* `c.push(repository, registry=None)`
+* `c.push(repository)`
Identical to the `docker push` command.
* `c.remove_container(containers..., v=False)`
diff --git a/setup.py b/setup.py
index c8eab05..e826076 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.2',
+ version='0.1.3',
description="Python client for Docker.",
packages=['docker'],
install_requires=['requests', 'six'] + test_requirements,