summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorshin- <joffrey@dotcloud.com>2014-02-24 15:52:12 +0100
committershin- <joffrey@dotcloud.com>2014-02-24 15:52:12 +0100
commitf594247365da396dabe97423e2f1f9eb998ee288 (patch)
treefeb64cae61e441874eb5cfd9220d79e5ed0c01f0
parent0f366bf7a8c22b971d36a17049937d5515280574 (diff)
downloaddocker-py-0.3.0.tar.gz
Updated changelog, bumped version to 0.3.00.3.0
-rw-r--r--ChangeLog.md34
-rw-r--r--setup.py2
2 files changed, 35 insertions, 1 deletions
diff --git a/ChangeLog.md b/ChangeLog.md
index b8df129..ea358aa 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 745f9ec..c0ba6d3 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,