Skip to content

Commit b491ed8

Browse files
committed
4.6.0
1 parent aed923f commit b491ed8

19 files changed

+1278
-1569
lines changed

.jshintrc

-33
This file was deleted.

.npmignore

-9
This file was deleted.

.travis.yml

-13
This file was deleted.

CHANGELOG.md

+6-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,12 @@
1+
##### 4.6.0 29 April 2016
2+
3+
###### Bug fixes
4+
- #215 - angular-cache.min.js tries to load the .map from dist/
5+
- #204 - Does not work with Angular 1.3 and browserify
6+
17
##### 4.5.0 12 January 2016
28

39
###### Backwards compatible API changes
4-
510
- #205 - Feature request: Cache.getAllValues
611

712
###### Backwards compatible bug fixes

LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License
22

3-
Copyright (C) 2013-2016 Jason Dobry
3+
Copyright (C) 2013-2016 angular-cache project authors
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy of
66
this software and associated documentation files (the "Software"), to deal in

README.md

+8-12
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,15 @@
1-
## angular-cache [![bower version](https://img.shields.io/bower/v/angular-cache.svg?style=flat-square)](https://www.npmjs.org/package/angular-cache) [![npm version](https://img.shields.io/npm/v/angular-cache.svg?style=flat-square)](https://www.npmjs.org/package/angular-cache) [![Circle CI](https://img.shields.io/circleci/project/jmdobry/angular-cache/master.svg?style=flat-square)](https://circleci.com/gh/jmdobry/angular-cache/tree/master) [![npm downloads](https://img.shields.io/npm/dm/angular-cache.svg?style=flat-square)](https://www.npmjs.org/package/angular-cache) [![License](https://img.shields.io/badge/license-MIT-blue.svg?style=flat-square)](https://github.com/jmdobry/angular-cache/blob/master/LICENSE)
1+
# angular-cache
2+
3+
[![bower version](https://img.shields.io/bower/v/angular-cache.svg?style=flat)](https://www.npmjs.org/package/angular-cache)
4+
[![npm version](https://img.shields.io/npm/v/angular-cache.svg?style=flat)](https://www.npmjs.org/package/angular-cache)
5+
[![Circle CI](https://img.shields.io/circleci/project/jmdobry/angular-cache/master.svg?style=flat)](https://circleci.com/gh/jmdobry/angular-cache/tree/master)
6+
[![npm downloads](https://img.shields.io/npm/dm/angular-cache.svg?style=flat)](https://www.npmjs.org/package/angular-cache)
7+
[![codecov](https://img.shields.io/codecov/c/github/jmdobry/angular-cache.svg)](https://codecov.io/gh/jmdobry/angular-cache)
28

39
A very useful replacement for Angular's $cacheFactory.
410

511
__versions of angular-cache below 4.0.0 have been deprecated, see the [breaking changes](https://github.com/jmdobry/angular-cache/blob/master/CHANGELOG.md) in 4.0.0__
612

7-
__Latest Release:__ [![Latest Release](https://img.shields.io/github/release/jmdobry/angular-cache.svg?style=flat-square)](https://github.com/jmdobry/angular-cache/releases)
8-
9-
__Status:__
10-
11-
[![Dependency Status](https://img.shields.io/gemnasium/jmdobry/angular-cache.svg?style=flat-square)](https://gemnasium.com/jmdobry/angular-cache) [![Coverage Status](https://img.shields.io/coveralls/jmdobry/angular-cache/master.svg?style=flat-square)](https://coveralls.io/r/jmdobry/angular-cache?branch=master) [![Codacity](https://img.shields.io/codacy/5e27e21d0c4c4d4cb203d589384aa93a.svg?style=flat-square)](https://www.codacy.com/public/jasondobry/angular-cache/dashboard)
12-
13-
__Supported Browsers:__
14-
15-
[![browsers](https://img.shields.io/badge/Browser-Chrome%2CFirefox%2CSafari%2COpera%2CIE%209%2B%2CiOS%20Safari%207.1%2B%2CAndroid%20Browser%202.3%2B-green.svg?style=flat-square)](https://github.com/jmdobry/angular-cache)
16-
1713
### Table of Contents
1814
- [Quick Start](#quick-start)
1915
- [The Basics](#the-basics)
@@ -655,7 +651,7 @@ Set multiple options for the cache at a time. Setting `strict` to `true` will re
655651
### License
656652
[MIT License](https://github.com/jmdobry/angular-cache/blob/master/LICENSE)
657653

658-
Copyright (C) 2013-2016 Jason Dobry
654+
Copyright (C) 2013-2016 angular-cache project authors
659655

660656
Permission is hereby granted, free of charge, to any person obtaining a copy of
661657
this software and associated documentation files (the "Software"), to deal in

circle.yml

+5-7
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
1-
dependencies:
2-
pre:
3-
- bower install
4-
cache_directories:
5-
- "bower_components"
1+
machine:
2+
node:
3+
version: 4.1.0
64
test:
7-
post:
8-
- grunt coveralls || true
5+
override:
6+
- npm run ci

0 commit comments

Comments
 (0)