Skip to content

Commit 0e1b54c

Browse files
committed
bumped version to 1.0rc2
1 parent 4d83e28 commit 0e1b54c

File tree

4 files changed

+6
-4
lines changed

4 files changed

+6
-4
lines changed

CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
## master ##
44

5+
## 1.0rc2 ##
6+
57
### FIXED ###
68
* Fix for Windows Phone 8.1 (#132 thanks badpenguin and Sturgelose)
79
* Fix for empty cache size on Chrome

bower.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "imgcache.js",
3-
"version": "1.0rc1",
3+
"version": "1.0rc2",
44
"homepage": "https://github.com/chrisben/imgcache.js",
55
"authors": [
66
{

chrisben:imgcache/package.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
Package.describe({
22
summary: "JS library that stores images locally for offline apps using PhoneGap/Cordova or browsers supporting the new html5 File API",
3-
version: "1.0rc1",
3+
version: "1.0rc2",
44
git: "https://github.com/chrisben/imgcache.js"
55
});
66

77
Package.onUse(function(api) {
88
api.versionsFrom(["METEOR@0.9.5", "METEOR@1.1.0.2"]);
99
api.addFiles("../js/imgcache.js");
10-
});
10+
});

js/imgcache.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
/*global console,LocalFileSystem,device,FileTransfer,define,module*/
1919

2020
var ImgCache = {
21-
version: '1.0rc1',
21+
version: '1.0rc2',
2222
// options to override before using the library (but after loading this script!)
2323
options: {
2424
debug: false, /* call the log method ? */

0 commit comments

Comments
 (0)