You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by ti...@apache.org on 2012/11/08 00:41:52 UTC

[10/12] webworks commit: [CB-1728] - updating version and tagging

[CB-1728] - updating version and tagging


Project: http://git-wip-us.apache.org/repos/asf/incubator-cordova-blackberry-webworks/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-cordova-blackberry-webworks/commit/35cd0cdd
Tree: http://git-wip-us.apache.org/repos/asf/incubator-cordova-blackberry-webworks/tree/35cd0cdd
Diff: http://git-wip-us.apache.org/repos/asf/incubator-cordova-blackberry-webworks/diff/35cd0cdd

Branch: refs/heads/bb10_ext_qnx
Commit: 35cd0cddffb1a88188f908e4f26508110940acef
Parents: a5ab5a7
Author: Tim Kim <ti...@nitobi.com>
Authored: Wed Oct 24 13:49:17 2012 -0700
Committer: Tim Kim <ti...@nitobi.com>
Committed: Wed Oct 24 13:49:17 2012 -0700

----------------------------------------------------------------------
 VERSION                                            |    2 +-
 .../ext/src/org/apache/cordova/device/Device.java  |    2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-cordova-blackberry-webworks/blob/35cd0cdd/VERSION
----------------------------------------------------------------------
diff --git a/VERSION b/VERSION
index bdc2ab6..8b6adce 100644
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-2.2.0rc1
+2.2.0rc2

http://git-wip-us.apache.org/repos/asf/incubator-cordova-blackberry-webworks/blob/35cd0cdd/framework/ext/src/org/apache/cordova/device/Device.java
----------------------------------------------------------------------
diff --git a/framework/ext/src/org/apache/cordova/device/Device.java b/framework/ext/src/org/apache/cordova/device/Device.java
index ccfcd74..c2121a0 100644
--- a/framework/ext/src/org/apache/cordova/device/Device.java
+++ b/framework/ext/src/org/apache/cordova/device/Device.java
@@ -53,7 +53,7 @@ public final class Device extends Plugin {
 				JSONObject device = new JSONObject();
 				device.put( FIELD_PLATFORM, new String(DeviceInfo.getPlatformVersion() ) );
 				device.put( FIELD_UUID, new Integer( DeviceInfo.getDeviceId()) );
-				device.put( FIELD_CORDOVA, "2.2.0rc1" );
+				device.put( FIELD_CORDOVA, "2.2.0rc2" );
 				device.put( FIELD_NAME, new String(DeviceInfo.getDeviceName()) );
 				device.put( FIELD_VERSION, new String(DeviceInfo.getSoftwareVersion()) );
 				result = new PluginResult(PluginResult.Status.OK, device);