Skip to content

Commit

Permalink
chore: bump to 1.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Scott Trinh committed Jul 3, 2016
1 parent db03a8d commit 99f2298
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 8 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
<a name="1.3.1"></a>
# 1.3.1 (2016-07-03)

## Bug Fixes

- Fix SystemJS loading
([18c91d2](https://github.com/ocombe/angular-localForage/commit/18c91d28cac92e1530e6a208029cb61b82d5b53b))


<a name="1.3.0"></a>
# 1.3.0 (2016-07-02)

Expand Down
4 changes: 2 additions & 2 deletions bower.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "angular-localforage",
"main": "dist/angular-localForage.js",
"version": "1.3.0",
"version": "1.3.1",
"homepage": "https://github.com/ocombe/angular-localForage",
"authors": [
"Olivier Combe <[email protected]>"
Expand Down Expand Up @@ -39,4 +39,4 @@
"localforage": "~1.4",
"angular": "1.2.x - 1.5.x"
}
}
}
4 changes: 2 additions & 2 deletions dist/angular-localForage.js
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
/**
* angular-localforage - Angular service & directive for https://github.com/mozilla/localForage (Offline storage, improved.)
* @version v1.3.0
* @version v1.3.1
* @link https://github.com/ocombe/angular-localForage
* @license MIT
* @author Olivier Combe <[email protected]>
*/
(function(root, factory) {
'use strict';

var angular = root ? root.angular : window.angular;
var angular = (root && root.angular) || (window && window.angular);
if(typeof define === 'function' && define.amd) { // AMD
define(['localforage'], function(localforage) {
factory(angular, localforage);
Expand Down
4 changes: 2 additions & 2 deletions dist/angular-localForage.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "angular-localforage",
"version": "1.3.0",
"version": "1.3.1",
"description": "Angular service & directive for https://github.com/mozilla/localForage (Offline storage, improved.)",
"license": "MIT",
"main": "dist/angular-localForage.js",
Expand Down Expand Up @@ -54,4 +54,4 @@
"semver": "~4.3.6",
"streamqueue": "~1.1.0"
}
}
}

0 comments on commit 99f2298

Please sign in to comment.