From f594247365da396dabe97423e2f1f9eb998ee288 Mon Sep 17 00:00:00 2001 From: shin- Date: Mon, 24 Feb 2014 15:52:12 +0100 Subject: [PATCH] Updated changelog, bumped version to 0.3.0 --- ChangeLog.md | 34 ++++++++++++++++++++++++++++++++++ setup.py | 2 +- 2 files changed, 35 insertions(+), 1 deletion(-) diff --git a/ChangeLog.md b/ChangeLog.md index b8df129f..ea358aab 100644 --- a/ChangeLog.md +++ b/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 ----- diff --git a/setup.py b/setup.py index 745f9ec6..c0ba6d3b 100644 --- a/setup.py +++ b/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,