Skip to content
This repository has been archived by the owner on Apr 18, 2019. It is now read-only.

Commit

Permalink
[CB-2575] - updating version
Browse files Browse the repository at this point in the history
  • Loading branch information
timkim committed Feb 27, 2013
1 parent a1c430b commit 780161d
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion VERSION
@@ -1 +1 @@
2.5.0rc1
2.5.0
2 changes: 1 addition & 1 deletion bin/templates/project/www/VERSION
@@ -1 +1 @@
2.5.0rc1
2.5.0
2 changes: 1 addition & 1 deletion bin/templates/project/www/index.html
Expand Up @@ -33,7 +33,7 @@ <h1>Apache Cordova</h1>
<p class="event received">Device is Ready</p>
</div>
</div>
<script type="text/javascript" src="cordova-2.5.0rc1.js"></script>
<script type="text/javascript" src="cordova-2.5.0.js"></script>
<script type="text/javascript" src="js/index.js"></script>
<script type="text/javascript">
app.initialize();
Expand Down
2 changes: 1 addition & 1 deletion framework/ext/src/org/apache/cordova/device/Device.java
Expand Up @@ -54,7 +54,7 @@ public PluginResult execute(String action, JSONArray args, String callbackId) {
JSONObject device = new JSONObject();
device.put( FIELD_PLATFORM, "BlackBerry");
device.put( FIELD_UUID, new Integer( DeviceInfo.getDeviceId()) );
device.put( FIELD_CORDOVA, "2.5.0rc1" );
device.put( FIELD_CORDOVA, "2.5.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()) );
Expand Down

0 comments on commit 780161d

Please sign in to comment.