Skip to content

Commit

Permalink
chore: bump to 1.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
ocombe committed Dec 8, 2014
1 parent ff575a1 commit c0e8e9d
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 7 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
<a name="1.2.1"></a>
# 1.2.1 (2014-12-08)


## Bug Fixes

- don't use angular.copy on Blobs
([ff575a1b](https://github.com/ocombe/angular-localForage/commit/ff575a1bdbd076c42fa64d5f5824f4967990f5b5),
[#44](https://github.com/ocombe/angular-localForage/issues/44))


<a name="1.2.0"></a>
# 1.2.0 (2014-11-18)

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.2.0",
"version": "1.2.1",
"homepage": "https://github.com/ocombe/angular-localForage",
"authors": [
"Olivier Combe <[email protected]>"
Expand Down Expand Up @@ -39,4 +39,4 @@
"localforage": "1.2.0",
"angular": "1.2.x - 1.3.x"
}
}
}
4 changes: 2 additions & 2 deletions dist/angular-localForage.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
* angular-localforage - Angular service & directive for https://github.com/mozilla/localForage (Offline storage, improved.)
* @version v1.2.0
* @version v1.2.1
* @link https://github.com/ocombe/angular-localForage
* @license MIT
* @author Olivier Combe <[email protected]>
Expand Down Expand Up @@ -120,7 +120,7 @@
} else {
var deferred = $q.defer(),
args = arguments,
localCopy = angular.copy(value);
localCopy = angular.isDefined(Blob) && value instanceof Blob ? value : angular.copy(value);

//avoid $promises attributes from value objects, if present.
if(angular.isObject(localCopy) && angular.isDefined(localCopy.$promise)) {
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.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "angular-localforage",
"version": "1.2.0",
"version": "1.2.1",
"description": "Angular service & directive for https://github.com/mozilla/localForage (Offline storage, improved.)",
"license": "MIT",
"main": "dist/angular-localForage.js",
Expand Down

0 comments on commit c0e8e9d

Please sign in to comment.