fixed typo in docs
Project: http://git-wip-us.apache.org/repos/asf/libcloud/repo Commit: http://git-wip-us.apache.org/repos/asf/libcloud/commit/0f831f56 Tree: http://git-wip-us.apache.org/repos/asf/libcloud/tree/0f831f56 Diff: http://git-wip-us.apache.org/repos/asf/libcloud/diff/0f831f56 Branch: refs/heads/trunk Commit: 0f831f561db976a9326049f53f0d10502ad4fe2e Parents: 09fb5b4 Author: Anthony Shaw <anthonys...@apache.org> Authored: Fri Jan 13 19:05:01 2017 +1100 Committer: Anthony Shaw <anthonys...@apache.org> Committed: Fri Jan 13 19:05:01 2017 +1100 ---------------------------------------------------------------------- docs/other/changes_in_2_0.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/libcloud/blob/0f831f56/docs/other/changes_in_2_0.rst ---------------------------------------------------------------------- diff --git a/docs/other/changes_in_2_0.rst b/docs/other/changes_in_2_0.rst index 2eccbe2..6433079 100644 --- a/docs/other/changes_in_2_0.rst +++ b/docs/other/changes_in_2_0.rst @@ -1,8 +1,8 @@ Changes in Apache Libcloud v2.0.0RC1 ==================================== -Replacement of urllib with `requests` -------------------------------------- +Replacement of httplib with `requests` +-------------------------------------- Apache Libcloud supports Python 2.6, 2.7 - 3.3 and beyond. To achieve this a package was written within the Libcloud library to create a generic HTTP client for Python 2 and 3. This package has a custom implementation of a certificate store, searching and TLS preference configuration. One of the first errors to greet new users of Libcloud would be "No CA Certificates were found in CA_CERTS_PATH."... @@ -18,7 +18,7 @@ Other changes include: * Support for mocking HTTP responses without having to mock the Connection class * 10% typical performance improvement with the use of persistent TCP connections for each driver instance * Access to the low-level TCP session is no longer available. Access to .read() on a raw connection will bind around `requests` body or iter_content methods. - +* Temporary removal of the S3 very-large file support using the custom multi-part APIs. This will be added back in subsequent release candidates. Allow redirects is enabled by default ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~