Skip to content

Commit ffa658c

Browse files
committed
v2.0.20171115
1 parent f7019af commit ffa658c

File tree

4 files changed

+18
-4
lines changed

4 files changed

+18
-4
lines changed

Blob.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/* Blob.js
22
* A Blob implementation.
3-
* 2014-07-24
3+
* 2017-11-15
44
*
55
* By Eli Grey, http://eligrey.com
66
* By Devin Samarin, https://github.com/dsamarin

CHANGELOG.md

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# `blob-polyfill` CHANGELOG
2+
3+
## v2.0.20171115
4+
* Add UMD wrapper to allow non-global polluting usage in Node (@jscinoz)
5+
* License clarification (@eligrey)
6+
* Clarified browser support in the readme (@eligrey)
7+
* Add CHANGELOG (@bjornstar)
8+
9+
## v1.0.20150320
10+
* Add support for PhantomJS (@mitar)
11+
* Add package.json (@bjornstar)
12+
* Add bower.json (@bjornstar)
13+
* Release on npm as blob-polyfill (@bjornstar)

bower.json

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,15 @@
11
{
22
"name": "blob-polyfill",
3-
"version": "1.0.20150320",
3+
"version": "2.0.20171115",
44
"homepage": "https://github.com/bjornstar/blob-polyfill",
55
"authors": [
66
"Eli Grey <[email protected]>"
77
],
88
"description": "Blob.js implements the W3C Blob interface in browsers that do not natively support it.",
99
"main": "Blob.js",
1010
"moduleType": [
11-
"amd"
11+
"amd",
12+
"node"
1213
],
1314
"keywords": [
1415
"blob",

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "blob-polyfill",
3-
"version": "1.0.20150320",
3+
"version": "2.0.20171115",
44
"description": "Blob.js implements the W3C Blob interface in browsers that do not natively support it.",
55
"main": "Blob.js",
66
"scripts": {

0 commit comments

Comments
 (0)