From 0e1b54c055fa2cfda562db8b3b731294540f4218 Mon Sep 17 00:00:00 2001 From: chrisben Date: Sat, 31 Oct 2015 17:22:53 +0100 Subject: [PATCH] bumped version to 1.0rc2 --- CHANGELOG.md | 2 ++ bower.json | 2 +- chrisben:imgcache/package.js | 4 ++-- js/imgcache.js | 2 +- 4 files changed, 6 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8e2ea8a..06932e4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/bower.json b/bower.json index 0125229..cea4396 100644 --- a/bower.json +++ b/bower.json @@ -1,6 +1,6 @@ { "name": "imgcache.js", - "version": "1.0rc1", + "version": "1.0rc2", "homepage": "https://github.com/chrisben/imgcache.js", "authors": [ { diff --git a/chrisben:imgcache/package.js b/chrisben:imgcache/package.js index 8a6bd68..88bfe0d 100644 --- a/chrisben:imgcache/package.js +++ b/chrisben:imgcache/package.js @@ -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(["METEOR@0.9.5", "METEOR@1.1.0.2"]); api.addFiles("../js/imgcache.js"); -}); \ No newline at end of file +}); diff --git a/js/imgcache.js b/js/imgcache.js index d10f7d0..1a70f15 100644 --- a/js/imgcache.js +++ b/js/imgcache.js @@ -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 ? */