[CB-2878] - updated version and tagged
diff --git a/VERSION b/VERSION
index f47de85..e70b452 100644
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-2.6.0rc1
+2.6.0
diff --git a/bin/templates/project/www/VERSION b/bin/templates/project/www/VERSION
index f47de85..e70b452 100644
--- a/bin/templates/project/www/VERSION
+++ b/bin/templates/project/www/VERSION
@@ -1 +1 @@
-2.6.0rc1
+2.6.0
diff --git a/bin/templates/project/www/index.html b/bin/templates/project/www/index.html
index 15abf33..4d39cf3 100644
--- a/bin/templates/project/www/index.html
+++ b/bin/templates/project/www/index.html
@@ -33,7 +33,7 @@
                 <p class="event received">Device is Ready</p>
             </div>
         </div>
-        <script type="text/javascript" src="cordova-2.6.0rc1.js"></script>
+        <script type="text/javascript" src="cordova-2.6.0.js"></script>
         <script type="text/javascript" src="js/index.js"></script>
         <script type="text/javascript">
             app.initialize();
diff --git a/framework/ext/src/org/apache/cordova/device/Device.java b/framework/ext/src/org/apache/cordova/device/Device.java
index 7b67a8b..af39a49 100644
--- a/framework/ext/src/org/apache/cordova/device/Device.java
+++ b/framework/ext/src/org/apache/cordova/device/Device.java
@@ -54,7 +54,7 @@
 				JSONObject device = new JSONObject();
 				device.put( FIELD_PLATFORM, "BlackBerry");
 				device.put( FIELD_UUID, new Integer( DeviceInfo.getDeviceId()) );
-				device.put( FIELD_CORDOVA, "2.6.0rc1" );
+				device.put( FIELD_CORDOVA, "2.6.0" );
 				device.put( FIELD_MODEL, new String(DeviceInfo.getDeviceName()) );
 				device.put( FIELD_NAME, new String(DeviceInfo.getDeviceName()) );
 				device.put( FIELD_VERSION, new String(DeviceInfo.getSoftwareVersion()) );