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 2013/01/03 01:44:49 UTC

js commit: Updating the version to 2.3.0

Updated Branches:
  refs/heads/master 4082ee0ba -> 24d65ab64


Updating the version to 2.3.0


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

Branch: refs/heads/master
Commit: 24d65ab645742e8360c3dd16d7a36411cc3383e0
Parents: 4082ee0
Author: Joe Bowser <bo...@apache.org>
Authored: Wed Jan 2 16:44:23 2013 -0800
Committer: Joe Bowser <bo...@apache.org>
Committed: Wed Jan 2 16:44:23 2013 -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/24d65ab6/VERSION
----------------------------------------------------------------------
diff --git a/VERSION b/VERSION
index bcf7441..276cbf9 100644
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-2.3.0rc2
+2.3.0

http://git-wip-us.apache.org/repos/asf/cordova-js/blob/24d65ab6/lib/bada/plugin/bada/device.js
----------------------------------------------------------------------
diff --git a/lib/bada/plugin/bada/device.js b/lib/bada/plugin/bada/device.js
index 9fe9be1..9598f99 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.0rc2";
+           me.cordova = "2.3.0";
            success(me);
        }
    };

http://git-wip-us.apache.org/repos/asf/cordova-js/blob/24d65ab6/lib/blackberry/plugin/air/device.js
----------------------------------------------------------------------
diff --git a/lib/blackberry/plugin/air/device.js b/lib/blackberry/plugin/air/device.js
index deab0d7..3523ca1 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.0rc2"
+                    cordova: "2.3.0"
                 });
             }),
             request = new blackberry.transport.RemoteFunctionCall("org/apache/cordova/getDeviceInfo");

http://git-wip-us.apache.org/repos/asf/cordova-js/blob/24d65ab6/lib/blackberry/plugin/qnx/device.js
----------------------------------------------------------------------
diff --git a/lib/blackberry/plugin/qnx/device.js b/lib/blackberry/plugin/qnx/device.js
index be18d04..7a79195 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.0rc2"
+            cordova: "2.3.0"
         });
 
         return { "status" : cordova.callbackStatus.NO_RESULT, "message" : "Device info returned" };

http://git-wip-us.apache.org/repos/asf/cordova-js/blob/24d65ab6/lib/tizen/plugin/tizen/Device.js
----------------------------------------------------------------------
diff --git a/lib/tizen/plugin/tizen/Device.js b/lib/tizen/plugin/tizen/Device.js
index cbf1f67..3516f87 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.0rc2";
+    this.cordova = "2.3.0";
     this.platform = "Tizen";
 
     var me = this;