You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@libcloud.apache.org by to...@apache.org on 2020/01/24 08:59:24 UTC

[libcloud] branch trunk updated (a344be3 -> 6f2e8df)

This is an automated email from the ASF dual-hosted git repository.

tomaz pushed a change to branch trunk
in repository https://gitbox.apache.org/repos/asf/libcloud.git.


    from a344be3  Merge branch 'trunk' of http://gitbox.apache.org/repos/asf/libcloud into trunk
     new 832e12f  Set version to 3.0.0-rc1.
     new 6f2e8df  Fix formatting and lint.

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 CHANGES.rst          | 13 +++++++------
 docs/conf.py         |  4 ++--
 libcloud/__init__.py |  2 +-
 3 files changed, 10 insertions(+), 9 deletions(-)


[libcloud] 02/02: Fix formatting and lint.

Posted by to...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

tomaz pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/libcloud.git

commit 6f2e8dfaa156a633ab3b233282570eb8736a89cd
Author: Tomaz Muraus <to...@tomaz.me>
AuthorDate: Fri Jan 24 09:56:58 2020 +0100

    Fix formatting and lint.
---
 CHANGES.rst | 9 +++++----
 1 file changed, 5 insertions(+), 4 deletions(-)

diff --git a/CHANGES.rst b/CHANGES.rst
index 097fc61..9e30d51 100644
--- a/CHANGES.rst
+++ b/CHANGES.rst
@@ -132,11 +132,12 @@ Storage
   (GITHUB-1403, GITHUB-1408)
   [Clemens Wolff - @c-w]
 
-- [Azure Blobs, Aliyun, Local, Ninefold, S3] Ensure upload headers are respected.
+- [Azure Blobs, Aliyun, Local, Ninefold, S3] Ensure upload headers are
+  respected.
 
   All storage drivers now pass the optional ``headers`` argument of
-  ``upload_object`` and ``upload_object_via_stream`` to the backend object storage
-  systems (previously the argument was silently ignored).
+  ``upload_object`` and ``upload_object_via_stream`` to the backend object
+  storage systems (previously the argument was silently ignored).
 
   (GITHUB-1410)
   [Clemens Wolff - @c-w]
@@ -148,7 +149,7 @@ DNS
   API updates.
   (GITHUB-1416)
   [Ryan Lee - @zepheiryan]
-  
+
 Container
 ~~~~~~~~~
 


[libcloud] 01/02: Set version to 3.0.0-rc1.

Posted by to...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

tomaz pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/libcloud.git

commit 832e12fa816fe4c66069a096466e11eae99bfc4f
Author: Tomaz Muraus <to...@tomaz.me>
AuthorDate: Fri Jan 24 09:44:51 2020 +0100

    Set version to 3.0.0-rc1.
---
 CHANGES.rst          | 4 ++--
 docs/conf.py         | 4 ++--
 libcloud/__init__.py | 2 +-
 3 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/CHANGES.rst b/CHANGES.rst
index afa0c53..097fc61 100644
--- a/CHANGES.rst
+++ b/CHANGES.rst
@@ -1,8 +1,8 @@
 Changelog
 =========
 
-Changes in Apache Libcloud in development (3.0.0)
--------------------------------------------------
+Changes in Apache Libcloud 3.0.0-rc1
+------------------------------------
 
 General
 ~~~~~~~
diff --git a/docs/conf.py b/docs/conf.py
index faa9ba0..c1ffaa1 100644
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -73,9 +73,9 @@ html_show_sphinx = False
 # built documents.
 #
 # The short X.Y version.
-version = '3.0.0-dev'
+version = '3.0.0-rc1'
 # The full version, including alpha/beta/rc tags.
-release = '3.0.0-dev'
+release = '3.0.0-rc1'
 
 # The language for content autogenerated by Sphinx. Refer to documentation
 # for a list of supported languages.
diff --git a/libcloud/__init__.py b/libcloud/__init__.py
index 8ee350a..ed5d790 100644
--- a/libcloud/__init__.py
+++ b/libcloud/__init__.py
@@ -46,7 +46,7 @@ __all__ = [
     'enable_debug'
 ]
 
-__version__ = '3.0.0-dev'
+__version__ = '3.0.0-rc1'
 
 
 def enable_debug(fo):