Skip to content

Commit

Permalink
bumped version to 1.0rc2
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisben committed Oct 31, 2015
1 parent 4d83e28 commit 0e1b54c
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

## master ##

## 1.0rc2 ##

### FIXED ###
* Fix for Windows Phone 8.1 (#132 thanks badpenguin and Sturgelose)
* Fix for empty cache size on Chrome
Expand Down
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "imgcache.js",
"version": "1.0rc1",
"version": "1.0rc2",
"homepage": "https://github.com/chrisben/imgcache.js",
"authors": [
{
Expand Down
4 changes: 2 additions & 2 deletions chrisben:imgcache/package.js
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
Package.describe({
summary: "JS library that stores images locally for offline apps using PhoneGap/Cordova or browsers supporting the new html5 File API",
version: "1.0rc1",
version: "1.0rc2",
git: "https://github.com/chrisben/imgcache.js"
});

Package.onUse(function(api) {
api.versionsFrom(["[email protected]", "[email protected]"]);
api.addFiles("../js/imgcache.js");
});
});
2 changes: 1 addition & 1 deletion js/imgcache.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
/*global console,LocalFileSystem,device,FileTransfer,define,module*/

var ImgCache = {
version: '1.0rc1',
version: '1.0rc2',
// options to override before using the library (but after loading this script!)
options: {
debug: false, /* call the log method ? */
Expand Down

0 comments on commit 0e1b54c

Please sign in to comment.