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 2015/10/29 23:53:56 UTC

cordova-coho git commit: Update app-hello-world-release-process.md

Repository: cordova-coho
Updated Branches:
  refs/heads/master 9a736a3e4 -> 443c2f846


Update app-hello-world-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/443c2f84
Tree: http://git-wip-us.apache.org/repos/asf/cordova-coho/tree/443c2f84
Diff: http://git-wip-us.apache.org/repos/asf/cordova-coho/diff/443c2f84

Branch: refs/heads/master
Commit: 443c2f8460c86ed59d23a1854ca11df4fc0ba27f
Parents: 9a736a3
Author: Steve Gill <st...@gmail.com>
Authored: Thu Oct 29 15:52:44 2015 -0700
Committer: Steve Gill <st...@gmail.com>
Committed: Thu Oct 29 15:52:44 2015 -0700

----------------------------------------------------------------------
 docs/app-hello-world-release-process.md | 15 +++++++++------
 1 file changed, 9 insertions(+), 6 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-coho/blob/443c2f84/docs/app-hello-world-release-process.md
----------------------------------------------------------------------
diff --git a/docs/app-hello-world-release-process.md b/docs/app-hello-world-release-process.md
index 1c850fd..dd2aca8 100644
--- a/docs/app-hello-world-release-process.md
+++ b/docs/app-hello-world-release-process.md
@@ -62,18 +62,15 @@ If the changes merit it, manually bump the major / minor version instead of the
 
 Update Release notes (Grab changes from the previous release until now):
 
-    # Add new heading to release notes with version and date
-    DATE=$(date "+%h %d, %Y") 
+    coho update-release-notes -r app-hello-world
     
-    (cd cordova-app-hello-world; v="$(grep '"version"' package.json | cut -d'"' -f4)"; echo -e "\n### $v ($DATE)" >> RELEASENOTES.md; git log --pretty=format:'* %s' --topo-order --no-merges $(git describe --tags --abbrev=0)..master >> RELEASENOTES.md);
-
     # Then curate:
     vim cordova-app-hello-world/RELEASENOTES.md 
  
 Commit these changes
 
     (cd cordova-app-hello-world; v="$(grep '"version"' package.json | cut -d'"' -f4)"; git commit -am "$JIRA Updated version and RELEASENOTES.md for release $v")
-    git push origin master
+    (cd cordova-app-hello-world; git push origin master)
 
 Reply to the DISCUSS thread with a link to the updated release notes.
 
@@ -234,7 +231,13 @@ Find your release here: https://dist.apache.org/repos/dist/release/cordova/
 ### Update hello world template each platform ships with. This is so users can create projects without the CLI.
 
     (cp -fr cordova-app-hello-world/www/* cordova-android/bin/templates/project/assets/www/)
-    cd cordova-android and git add/commit changes
+    (cd cordova-android && git commit -am "$JIRA updated hello-world template")
+    
+    (cp -fr cordova-app-hello-world/www/* cordova-ios/bin/templates/project/www/)
+    (cd cordova-ios && git commit -am "$JIRA updated hello-world template")
+    
+    (cp -fr cordova-app-hello-world/www/* cordova-windows/template/www/)
+    (cd cordova-windows && git commit -am "$JIRA updated hello-world template")
 
 TODO: Need to add other platforms path to templates here
 


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