From 22af4ceb3c10a9efc304901655988a5cf6029f42 Mon Sep 17 00:00:00 2001 From: Jason Dobry Date: Tue, 9 Jul 2013 10:26:11 -0600 Subject: [PATCH] Bumped to version 0.8.1 Modified bower.json to use src/angular-cache.js --- README.md | 12 +++++----- bower.json | 5 ++--- coverage/index.html | 2 +- coverage/src/angular-cache.js.html | 2 +- coverage/src/index.html | 2 +- ...-cache-0.8.0.js => angular-cache-0.8.1.js} | 4 ++-- ....8.0.min.js => angular-cache-0.8.1.min.js} | 0 docs/$AngularCacheFactoryProvider.html | 4 ++-- docs/AngularCache.html | 22 +++++++++---------- ....0.js.html => angular-cache-0.8.1.js.html} | 10 ++++----- docs/angularCacheFactory.html | 12 +++++----- docs/index.html | 8 +++---- docs/module-angular-cache.html | 4 ++-- package.json | 2 +- 14 files changed, 44 insertions(+), 45 deletions(-) rename dist/{angular-cache-0.8.0.js => angular-cache-0.8.1.js} (99%) rename dist/{angular-cache-0.8.0.min.js => angular-cache-0.8.1.min.js} (100%) rename docs/{angular-cache-0.8.0.js.html => angular-cache-0.8.1.js.html} (99%) diff --git a/README.md b/README.md index 39be659..97eb591 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -angular-cache (0.8.0 - Beta) +angular-cache (0.8.1 - Beta) =============== angular-cache is a caching system that improves upon the capabilities of the $cacheFactory provided by AngularJS. With angular-cache your caches can periodically clear themselves and flush items that have expired. @@ -56,9 +56,9 @@ e.g. `$angularCacheFactory.get('someCache').setOptions({ capacity: 4500 })` ## Status | Version | Branch | Build status | Test Coverage | | ------- | ------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------- | -| 0.8.0 | [master](https://github.com/jmdobry/angular-cache) | [![Build Status](https://travis-ci.org/jmdobry/angular-cache.png?branch=master)](https://travis-ci.org/jmdobry/angular-cache) | [Test Coverage](http://jmdobry.github.io/angular-cache/coverage/) | -| 0.8.0 | [develop](https://github.com/jmdobry/angular-cache/tree/develop) | [![Build Status](https://travis-ci.org/jmdobry/angular-cache.png?branch=develop)](https://travis-ci.org/jmdobry/angular-cache) | | -| 0.8.0 | [all](https://drone.io/github.com/jmdobry/angular-cache) | [![Build Status](https://drone.io/github.com/jmdobry/angular-cache/status.png)](https://drone.io/github.com/jmdobry/angular-cache/latest) +| 0.8.1 | [master](https://github.com/jmdobry/angular-cache) | [![Build Status](https://travis-ci.org/jmdobry/angular-cache.png?branch=master)](https://travis-ci.org/jmdobry/angular-cache) | [Test Coverage](http://jmdobry.github.io/angular-cache/coverage/) | +| 0.8.1 | [develop](https://github.com/jmdobry/angular-cache/tree/develop) | [![Build Status](https://travis-ci.org/jmdobry/angular-cache.png?branch=develop)](https://travis-ci.org/jmdobry/angular-cache) | | +| 0.8.1 | [all](https://drone.io/github.com/jmdobry/angular-cache) | [![Build Status](https://drone.io/github.com/jmdobry/angular-cache/status.png)](https://drone.io/github.com/jmdobry/angular-cache/latest) ## Download @@ -69,8 +69,8 @@ or #### Latest Stable Version | Type | From drone.io | From raw.github.com | Size | | ------------- | ----------------- | ------------------- | ---- | -| Production | [angular-cache-0.8.0.min.js](https://drone.io/github.com/jmdobry/angular-cache/files/dist/angular-cache-0.8.0.min.js) | [angular-cache-0.8.0.min.js](https://raw.github.com/jmdobry/angular-cache/master/dist/angular-cache-0.8.0.min.js) | 3.3 KB | -| Development | [angular-cache-0.8.0.js](https://drone.io/github.com/jmdobry/angular-cache/files/dist/angular-cache-0.8.0.js) | [angular-cache-0.8.0.js](https://raw.github.com/jmdobry/angular-cache/master/dist/angular-cache-0.8.0.js) | 28.7 KB | +| Production | [angular-cache-0.8.1.min.js](https://drone.io/github.com/jmdobry/angular-cache/files/dist/angular-cache-0.8.1.min.js) | [angular-cache-0.8.1.min.js](https://raw.github.com/jmdobry/angular-cache/master/dist/angular-cache-0.8.1.min.js) | 3.3 KB | +| Development | [angular-cache-0.8.1.js](https://drone.io/github.com/jmdobry/angular-cache/files/dist/angular-cache-0.8.1.js) | [angular-cache-0.8.1.js](https://raw.github.com/jmdobry/angular-cache/master/dist/angular-cache-0.8.1.js) | 28.7 KB | ## Usage diff --git a/bower.json b/bower.json index d58f6da..b3311d5 100644 --- a/bower.json +++ b/bower.json @@ -1,9 +1,8 @@ { "name": "angular-cache", - "version": "0.8.0", + "version": "0.8.1", "main": [ - "dist/angular-cache-0.8.0.min.js", - "dist/angular-cache-0.8.0.js" + "src/angular-cache.js" ], "ignore": [ ".idea/", diff --git a/coverage/index.html b/coverage/index.html index a97337a..5d45b95 100644 --- a/coverage/index.html +++ b/coverage/index.html @@ -230,7 +230,7 @@

diff --git a/coverage/src/angular-cache.js.html b/coverage/src/angular-cache.js.html index 2ab4a0f..11cc7f5 100644 --- a/coverage/src/angular-cache.js.html +++ b/coverage/src/angular-cache.js.html @@ -2317,7 +2317,7 @@

diff --git a/coverage/src/index.html b/coverage/src/index.html index 0170d2e..96d71cd 100644 --- a/coverage/src/index.html +++ b/coverage/src/index.html @@ -230,7 +230,7 @@

diff --git a/dist/angular-cache-0.8.0.js b/dist/angular-cache-0.8.1.js similarity index 99% rename from dist/angular-cache-0.8.0.js rename to dist/angular-cache-0.8.1.js index 3e41a88..13feefb 100644 --- a/dist/angular-cache-0.8.0.js +++ b/dist/angular-cache-0.8.1.js @@ -1,7 +1,7 @@ /** * @author Jason Dobry - * @file angular-cache-0.8.0.js - * @version 0.8.0 + * @file angular-cache-0.8.1.js + * @version 0.8.1 * @copyright (c) 2013 Jason Dobry * @license MIT * diff --git a/dist/angular-cache-0.8.0.min.js b/dist/angular-cache-0.8.1.min.js similarity index 100% rename from dist/angular-cache-0.8.0.min.js rename to dist/angular-cache-0.8.1.min.js diff --git a/docs/$AngularCacheFactoryProvider.html b/docs/$AngularCacheFactoryProvider.html index 47ac3cb..1eeedbf 100644 --- a/docs/$AngularCacheFactoryProvider.html +++ b/docs/$AngularCacheFactoryProvider.html @@ -80,7 +80,7 @@

Source:
@@ -144,7 +144,7 @@

Index

Modules