You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by mw...@apache.org on 2012/07/18 23:14:07 UTC

git commit: [readme] Add release procedure.

Updated Branches:
  refs/heads/hello-cordova 091e3723c -> 20bee9171


[readme] Add release procedure.


Project: http://git-wip-us.apache.org/repos/asf/incubator-cordova-labs/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-cordova-labs/commit/20bee917
Tree: http://git-wip-us.apache.org/repos/asf/incubator-cordova-labs/tree/20bee917
Diff: http://git-wip-us.apache.org/repos/asf/incubator-cordova-labs/diff/20bee917

Branch: refs/heads/hello-cordova
Commit: 20bee91712e3383972c7380199f367ae3a9e7d99
Parents: 091e372
Author: Michael Brooks <mi...@michaelbrooks.ca>
Authored: Wed Jul 18 14:13:46 2012 -0700
Committer: Michael Brooks <mi...@michaelbrooks.ca>
Committed: Wed Jul 18 14:13:46 2012 -0700

----------------------------------------------------------------------
 README.md |   21 +++++++++++++++++++++
 1 files changed, 21 insertions(+), 0 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-cordova-labs/blob/20bee917/README.md
----------------------------------------------------------------------
diff --git a/README.md b/README.md
index 01596bf..126d628 100644
--- a/README.md
+++ b/README.md
@@ -10,3 +10,24 @@
 
     /www/spec.html
 
+## Updating Cordova Version
+
+The application's version is directly tied to each Apache Cordova release.
+The tag 1.9.0 for Hello Cordova is writtend for Apache Cordova 1.9.0.
+
+Updating to Apache Cordova x.x.x:
+
+1. `www/index.html`
+    - Update `<script type="text/javascript" src="cordova-x.x.x.js"></script>`
+2. `www/config.xml`
+    - Update `<widget version="x.x.x">`
+3. Commit and Tag
+    - `git commit -am "[app] Version x.x.x"`
+    - `git tag x.x.x`
+
+### Note on Tagging
+
+While Hello Cordova is a branch on `incubator-cordova-labs`, please prefix
+each tag with `hello-cordova`. For example, the tag for 1.9.0 should be
+`hello-cordova-1.9.0`
+