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 2017/09/21 10:54:37 UTC

[2/2] libcloud git commit: Update committer guide

Update committer guide


Project: http://git-wip-us.apache.org/repos/asf/libcloud/repo
Commit: http://git-wip-us.apache.org/repos/asf/libcloud/commit/cfbe2835
Tree: http://git-wip-us.apache.org/repos/asf/libcloud/tree/cfbe2835
Diff: http://git-wip-us.apache.org/repos/asf/libcloud/diff/cfbe2835

Branch: refs/heads/trunk
Commit: cfbe283584a36c90aa08d1bbe7154998aa1da53e
Parents: d16eaac
Author: Tomaz Muraus <to...@tomaz.me>
Authored: Thu Sep 21 12:50:48 2017 +0200
Committer: Tomaz Muraus <to...@tomaz.me>
Committed: Thu Sep 21 12:50:48 2017 +0200

----------------------------------------------------------------------
 docs/committer_guide.rst | 22 ++++++++++++++++++++--
 1 file changed, 20 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/libcloud/blob/cfbe2835/docs/committer_guide.rst
----------------------------------------------------------------------
diff --git a/docs/committer_guide.rst b/docs/committer_guide.rst
index 0ee16a2..722bdd3 100644
--- a/docs/committer_guide.rst
+++ b/docs/committer_guide.rst
@@ -161,6 +161,9 @@ For example:
 
     git tag --sign v0.15.0 105b9610835f99704996d861d613c5a9a8b3f8b1
 
+The commit SHA needs to be the one release artifacts are based on (aka the one
+people voted on) and the same one you used for the ``-tentative`` tag.
+
 Keep in mind that it's important that you sign the commit / tag with your GPG
 key.
 
@@ -218,12 +221,27 @@ For example
 
     ./dist/verify_checksums.sh apache-libcloud-0.13.2
 
-9. Updating doap_libcloud.rdf file
-~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+9. Updating doap_libcloud.rdf, __init__.py
+~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 
 Add information about the new release to the ``doap_libcloud.rdf`` file in the
 root of the main code repository.
 
+Update ``__version__`` attribute in ``libcloud/__init.py__`` file and indicate
+we are now working on a new release by incrementing a number and adding ``dev``
+suffix. For example, if version ``2.2.1`` has been released you would change
+it from:
+
+.. sourcecode:: python
+
+    __version__ = '2.2.1'
+
+To:
+
+.. sourcecode:: python
+
+    __version__ = '2.2.2dev'
+
 10. Updating website
 ~~~~~~~~~~~~~~~~~~~~