Prep for 2.7.0 tagging, please don't let this be retagged
diff --git a/lib/bada/plugin/bada/device.js b/lib/bada/plugin/bada/device.js
index 0ae0095..d37adf6 100644
--- a/lib/bada/plugin/bada/device.js
+++ b/lib/bada/plugin/bada/device.js
@@ -69,7 +69,7 @@
            me.platform = os_vendor + " " + os_name;

            me.version = os_version;

            me.uuid = uuid;

-           me.cordova = "2.7.0rc1";

+           me.cordova = "2.7.0";

            success(me);

        }

    };

diff --git a/lib/blackberry/plugin/air/device.js b/lib/blackberry/plugin/air/device.js
index be252e9..d948df2 100644
--- a/lib/blackberry/plugin/air/device.js
+++ b/lib/blackberry/plugin/air/device.js
@@ -35,7 +35,7 @@
                     model: "PlayBook",
                     name: "PlayBook", // deprecated: please use device.model
                     uuid: info.uuid,
-                    cordova: "2.7.0rc1"
+                    cordova: "2.7.0"
                 });
             }),
             request = new blackberry.transport.RemoteFunctionCall("org/apache/cordova/getDeviceInfo");
diff --git a/lib/blackberry/plugin/qnx/device.js b/lib/blackberry/plugin/qnx/device.js
index 0d805ff..623a8a0 100644
--- a/lib/blackberry/plugin/qnx/device.js
+++ b/lib/blackberry/plugin/qnx/device.js
@@ -33,7 +33,7 @@
             model: "Dev Alpha",

             name: "Dev Alpha", // deprecated: please use device.model

             uuid: blackberry.identity.uuid,

-            cordova: "2.7.0rc1"

+            cordova: "2.7.0"

         });

 

         return { "status" : cordova.callbackStatus.NO_RESULT, "message" : "Device info returned" };

diff --git a/lib/tizen/plugin/tizen/Device.js b/lib/tizen/plugin/tizen/Device.js
index a6a6e94..fea74c6 100644
--- a/lib/tizen/plugin/tizen/Device.js
+++ b/lib/tizen/plugin/tizen/Device.js
@@ -29,7 +29,7 @@
     this.version = null;

     this.uuid = null;

     this.name = null;

-    this.cordova = "2.7.0rc1";

+    this.cordova = "2.7.0";

     this.platform = "Tizen";

 

     var me = this;

diff --git a/lib/windows8/plugin/windows8/DeviceProxy.js b/lib/windows8/plugin/windows8/DeviceProxy.js
index 5aa0819..d7d7d4b 100644
--- a/lib/windows8/plugin/windows8/DeviceProxy.js
+++ b/lib/windows8/plugin/windows8/DeviceProxy.js
@@ -50,7 +50,7 @@
         }
 
         setTimeout(function () {
-            win({ platform: "windows8", version: "8", name: name, uuid: deviceId, cordova: "2.7.0rc1" });
+            win({ platform: "windows8", version: "8", name: name, uuid: deviceId, cordova: "2.7.0" });
         }, 0);
     }