Bumped version to 0.1.3

This commit is contained in:
shin- 2013-08-06 20:00:44 +02:00
parent 17a6994e43
commit 1b0af1d196
3 changed files with 7 additions and 2 deletions

View File

@ -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
-----

View File

@ -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)`

View File

@ -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,