mirror of https://github.com/docker/docker-py.git
Updated changelog, bumped version in setup.py
This commit is contained in:
parent
08d6de7ca1
commit
5e68ed1df8
26
ChangeLog.md
26
ChangeLog.md
|
@ -1,6 +1,32 @@
|
|||
ChangeLog
|
||||
=========
|
||||
|
||||
0.2.3
|
||||
-----
|
||||
|
||||
* Support for API version 1.6
|
||||
* Added support for links
|
||||
* Added support for global request timeout
|
||||
* Added `signal` parameter in `Client.kill`
|
||||
* Added support for `publish_all_ports` in `Client.start`
|
||||
* `Client.pull`, `Client.push` and `Client.build` can be streamed now
|
||||
* Added support for websockets in `Client.attach`
|
||||
* Fixed ports for Docker 0.6.5+
|
||||
* Added `Client.events` method (access to the `/events` endpoint)
|
||||
* Changed the way the ports and volumes are provided in `Client.start` and
|
||||
`Client.create_container̀` to make them simpler and more intuitive.
|
||||
|
||||
### Bugfixes
|
||||
|
||||
* Fixed a bug where private registries on HTTPS weren't handled properly
|
||||
* Fixed a bug where auth would break with Python 3
|
||||
|
||||
### Miscellaneous
|
||||
|
||||
* Test improvements
|
||||
* Slight doc improvements
|
||||
|
||||
|
||||
0.2.2
|
||||
-----
|
||||
|
||||
|
|
2
setup.py
2
setup.py
|
@ -11,7 +11,7 @@ with open('./requirements.txt') as requirements_txt:
|
|||
|
||||
setup(
|
||||
name="docker-py",
|
||||
version='0.2.2',
|
||||
version='0.2.3',
|
||||
description="Python client for Docker.",
|
||||
packages=['docker', 'docker.auth', 'docker.unixconn', 'docker.utils'],
|
||||
install_requires=requirements + test_requirements,
|
||||
|
|
Loading…
Reference in New Issue