version bump 1.1.0: pin dependencies

This commit is contained in:
SheetJS 2017-07-28 03:25:16 -04:00
parent 7fe46c8fa9
commit 43cef94e0a
5 changed files with 9 additions and 9 deletions

View File

@ -1 +1 @@
CRC32.version = '1.0.2';
CRC32.version = '1.1.0';

View File

@ -23,7 +23,7 @@ var CRC32;
}
/*jshint ignore:end */
}(function(CRC32) {
CRC32.version = '1.0.2';
CRC32.version = '1.1.0';
/*::
type CRC32Type = number;
type ABuf = Array<number> | Uint8Array | Buffer;

View File

@ -21,7 +21,7 @@ var CRC32;
}
/*jshint ignore:end */
}(function(CRC32) {
CRC32.version = '1.0.2';
CRC32.version = '1.1.0';
/* see perf/crc32table.js */
/*global Int32Array */
function signed_crc_table() {

View File

@ -21,7 +21,7 @@ var CRC32;
}
/*jshint ignore:end */
}(function(CRC32) {
CRC32.version = '1.0.2';
CRC32.version = '1.1.0';
/* see perf/crc32table.js */
/*global Int32Array */
function signed_crc_table() {

View File

@ -1,6 +1,6 @@
{
"name": "crc-32",
"version": "1.0.2",
"version": "1.1.0",
"author": "sheetjs",
"description": "Pure-JS CRC-32",
"keywords": [ "crc32", "checksum", "crc" ],
@ -9,12 +9,12 @@
},
"main": "./crc32",
"dependencies": {
"printj":"",
"exit-on-epipe":""
"printj":"~1.1.0",
"exit-on-epipe":"~1.0.1"
},
"devDependencies": {
"mocha":"",
"codepage":""
"mocha":"~2.5.3",
"codepage":"~1.10.0"
},
"repository": { "type":"git", "url":"git://github.com/SheetJS/js-crc32.git" },
"scripts": {