You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by st...@apache.org on 2016/01/16 02:07:37 UTC

cordova-coho git commit: Update plugins-release-process.md

Repository: cordova-coho
Updated Branches:
  refs/heads/master aeab259d2 -> c9666f636


Update plugins-release-process.md

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

Branch: refs/heads/master
Commit: c9666f636509b6ce9312950969650b3fbabbca58
Parents: aeab259
Author: Steve Gill <st...@gmail.com>
Authored: Fri Jan 15 17:06:04 2016 -0800
Committer: Steve Gill <st...@gmail.com>
Committed: Fri Jan 15 17:06:04 2016 -0800

----------------------------------------------------------------------
 docs/plugins-release-process.md | 10 +++++++++-
 1 file changed, 9 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-coho/blob/c9666f63/docs/plugins-release-process.md
----------------------------------------------------------------------
diff --git a/docs/plugins-release-process.md b/docs/plugins-release-process.md
index 1afa369..5bf68ec 100644
--- a/docs/plugins-release-process.md
+++ b/docs/plugins-release-process.md
@@ -110,7 +110,7 @@ Update its RELEASENOTES.md file with changes. Assumes coho exists at `cordova-co
     # Then curate:
     vim ${ACTIVE// //RELEASENOTES.md }/RELEASENOTES.md
 
-Add a comment to the JIRA issue with the output from (we'll use this later for the blog post):
+Add a comment to the JIRA issue with the output from (we'll use this later for the blog post): *CURRENTLY NOT WORKING*
 
     for l in $ACTIVE; do ( cd $l; id="$(grep id= plugin.xml | grep -v xml | grep -v engine | grep -v param | head -1 | cut -d'"' -f2)"; v="$(grep version= plugin.xml | grep -v xml | head -n1 | cut -d'"' -f2)"; echo $id@$v; awk "{ if (p) print } /$DATE/ { p = 1 } " < RELEASENOTES.md; echo); done
 
@@ -128,6 +128,10 @@ Reply to the DISCUSS thread with a link to the updated release notes.
  * Create mobilespec and sanity check all plugins on at least one platform (preferably, a released version of the platform and not master)
  * Run through mobilespec, ensuring to do manual tests that relate to changes in the RELEASENOTES.md
 
+## Create Release Branch
+
+    for l in $ACTIVE; do ( cd $l; v="$(grep version= plugin.xml | grep -v xml | head -n1 | cut -d'"' -f2)"; b=`expr $v : '^\(....\)'`; x="x"; b=$b$x; git branch $b; echo "Creating branch $b for $l"); done
+
 ## Update version to add back -dev suffix
 
     for l in $ACTIVE; do ( cd $l; v="$(grep version= plugin.xml | grep -v xml | head -n1 | cut -d'"' -f2)"; v_no_dev="${v%-dev}"; if [ "$v" = "$v_no_dev" ]; then v2="$(echo $v|awk -F"." '{$NF+=1}{print $0RT}' OFS="." ORS="")-dev"; echo "$l: Setting version in plugin.xml to $v2"; sed -i '' -E s:"version=\"$v\":version=\"$v2\":" plugin.xml; fi) ; done
@@ -282,6 +286,10 @@ TODO: Please someone write a coho helper for doing this POST request!
         npm publish $l-*.tgz
     ) done;
 
+## Add new apache release tags
+
+Make a copy of your released tag with a prefix of `rel\YOURTAG`. These are permanent release tags for Apache. 
+
 ## Post blog Post
 
 See [full instructions](http://svn.apache.org/viewvc/cordova/site/README.md?view=markup).


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@cordova.apache.org
For additional commands, e-mail: commits-help@cordova.apache.org