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

[1/2] js commit: Incrementing version to 2.3.0rc2

Updated Branches:
  refs/heads/master 46c89d142 -> 861ff3d50
Updated Tags:  refs/tags/2.3.0rc2 [created] 861ff3d50


Incrementing version to 2.3.0rc2


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

Branch: refs/heads/master
Commit: 861ff3d507fd5c64ed789d8abe360690e588252e
Parents: 4301bc9
Author: Joe Bowser <bo...@apache.org>
Authored: Mon Dec 10 14:14:11 2012 -0800
Committer: Joe Bowser <bo...@apache.org>
Committed: Mon Dec 10 14:14:11 2012 -0800

----------------------------------------------------------------------
 VERSION                             |    2 +-
 lib/bada/plugin/bada/device.js      |    2 +-
 lib/blackberry/plugin/air/device.js |    2 +-
 lib/blackberry/plugin/qnx/device.js |    2 +-
 lib/tizen/plugin/tizen/Device.js    |    2 +-
 5 files changed, 5 insertions(+), 5 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-js/blob/861ff3d5/VERSION
----------------------------------------------------------------------
diff --git a/VERSION b/VERSION
index d2a7ed1..bcf7441 100644
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-2.3.0rc1
+2.3.0rc2

http://git-wip-us.apache.org/repos/asf/cordova-js/blob/861ff3d5/lib/bada/plugin/bada/device.js
----------------------------------------------------------------------
diff --git a/lib/bada/plugin/bada/device.js b/lib/bada/plugin/bada/device.js
index dd59aba..9fe9be1 100644
--- a/lib/bada/plugin/bada/device.js
+++ b/lib/bada/plugin/bada/device.js
@@ -72,7 +72,7 @@ Device.prototype.getDeviceInfo = function(success, fail, args) {
            me.platform = os_vendor + " " + os_name;
            me.version = os_version;
            me.uuid = uuid;
-           me.cordova = "2.3.0rc1";
+           me.cordova = "2.3.0rc2";
            success(me);
        }
    };

http://git-wip-us.apache.org/repos/asf/cordova-js/blob/861ff3d5/lib/blackberry/plugin/air/device.js
----------------------------------------------------------------------
diff --git a/lib/blackberry/plugin/air/device.js b/lib/blackberry/plugin/air/device.js
index 16c3636..deab0d7 100644
--- a/lib/blackberry/plugin/air/device.js
+++ b/lib/blackberry/plugin/air/device.js
@@ -35,7 +35,7 @@ module.exports = {
                     model: "PlayBook",
                     name: "PlayBook", // deprecated: please use device.model
                     uuid: info.uuid,
-                    cordova: "2.3.0rc1"
+                    cordova: "2.3.0rc2"
                 });
             }),
             request = new blackberry.transport.RemoteFunctionCall("org/apache/cordova/getDeviceInfo");

http://git-wip-us.apache.org/repos/asf/cordova-js/blob/861ff3d5/lib/blackberry/plugin/qnx/device.js
----------------------------------------------------------------------
diff --git a/lib/blackberry/plugin/qnx/device.js b/lib/blackberry/plugin/qnx/device.js
index 4330442..be18d04 100644
--- a/lib/blackberry/plugin/qnx/device.js
+++ b/lib/blackberry/plugin/qnx/device.js
@@ -33,7 +33,7 @@ module.exports = {
             model: "Dev Alpha",
             name: "Dev Alpha", // deprecated: please use device.model
             uuid: blackberry.identity.uuid,
-            cordova: "2.3.0rc1"
+            cordova: "2.3.0rc2"
         });
 
         return { "status" : cordova.callbackStatus.NO_RESULT, "message" : "Device info returned" };

http://git-wip-us.apache.org/repos/asf/cordova-js/blob/861ff3d5/lib/tizen/plugin/tizen/Device.js
----------------------------------------------------------------------
diff --git a/lib/tizen/plugin/tizen/Device.js b/lib/tizen/plugin/tizen/Device.js
index 91ae7f4..cbf1f67 100644
--- a/lib/tizen/plugin/tizen/Device.js
+++ b/lib/tizen/plugin/tizen/Device.js
@@ -29,7 +29,7 @@ function Device() {
     this.version = null;
     this.uuid = null;
     this.name = null;
-    this.cordova = "2.3.0rc1";
+    this.cordova = "2.3.0rc2";
     this.platform = "Tizen";
 
     var me = this;