diff --git a/bits/01_version.js b/bits/01_version.js index 84b64ad..4122dea 100644 --- a/bits/01_version.js +++ b/bits/01_version.js @@ -1 +1 @@ -CRC32.version = '1.0.2'; +CRC32.version = '1.1.0'; diff --git a/crc32.flow.js b/crc32.flow.js index ba392bb..d06efb5 100644 --- a/crc32.flow.js +++ b/crc32.flow.js @@ -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 | Uint8Array | Buffer; diff --git a/crc32.js b/crc32.js index b8cbd1d..e40f80b 100644 --- a/crc32.js +++ b/crc32.js @@ -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() { diff --git a/ctest/crc32.js b/ctest/crc32.js index b8cbd1d..e40f80b 100644 --- a/ctest/crc32.js +++ b/ctest/crc32.js @@ -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() { diff --git a/package.json b/package.json index c1fca74..0256bd4 100644 --- a/package.json +++ b/package.json @@ -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": {