mirror of https://github.com/docker/docker-py.git
Updated changelog, bumped version to 0.3.0
This commit is contained in:
parent
0f366bf7a8
commit
f594247365
34
ChangeLog.md
34
ChangeLog.md
|
@ -1,6 +1,40 @@
|
|||
ChangeLog
|
||||
=========
|
||||
|
||||
0.3.0
|
||||
-----
|
||||
|
||||
* **This version introduces breaking changes!**
|
||||
* Support for API version 1.7 through 1.9 (Docker 0.8.0+)
|
||||
* Default API version is now 1.8
|
||||
* The client has been updated to support Requests 2.x. `requests==2.2.1`
|
||||
is now the recommended version.
|
||||
* Links can now be specified as tuples in `Client.start` (see docs for
|
||||
more information)
|
||||
* Added support for various options in `Client.create_container`
|
||||
(`network_disabled`, `cpu_shares`, `working_dir` and `entrypoint`)
|
||||
* `Client.attach` has been reworked to work similarly to `Client.logs`
|
||||
minus the historical data.
|
||||
* Logs can now be streamed using the `stream` parameter.
|
||||
* Added support for `tcp://` URLs as client `base_url`.
|
||||
* Various auth improvements.
|
||||
* Added support for custom `Client.build` timeout.
|
||||
|
||||
|
||||
### Bugfixes
|
||||
|
||||
* Fixed a bug where determining the protocol of a private registry
|
||||
would sometimes yield the wrong result.
|
||||
* Fixed a bug where `Client.copy` wouldn't accept a dict as argument.
|
||||
* Fixed several streaming bugs.
|
||||
* Removed unused parameter in `Client.import_image`.
|
||||
* The client's `base_url` now tolerates trailing slashes.
|
||||
|
||||
#### Miscellaneous
|
||||
|
||||
* Updated integration tests
|
||||
* Small doc fixes
|
||||
|
||||
0.2.3
|
||||
-----
|
||||
|
||||
|
|
2
setup.py
2
setup.py
|
@ -11,7 +11,7 @@ with open('./requirements.txt') as requirements_txt:
|
|||
|
||||
setup(
|
||||
name="docker-py",
|
||||
version='0.2.3',
|
||||
version='0.3.0',
|
||||
description="Python client for Docker.",
|
||||
packages=['docker', 'docker.auth', 'docker.unixconn', 'docker.utils'],
|
||||
install_requires=requirements + test_requirements,
|
||||
|
|
Loading…
Reference in New Issue