version bump 1.2.3

This commit is contained in:
SheetJS 2022-08-20 17:30:07 -04:00
parent 3bd21324db
commit 01cafc98c3
9 changed files with 15 additions and 20 deletions

View File

@ -5,26 +5,21 @@ Emphasis on correctness, performance, and IE6+ support.
## Installation
With [npm](https://www.npmjs.org/package/crc-32):
With a node package manager like `npm`:
```bash
$ npm install crc-32
$ npm i --save https://cdn.sheetjs.com/crc-32-latest/crc-32-latest.tgz
```
When installed globally, npm installs a script `crc32` that computes the
checksum for a specified file or standard input.
<details>
<summary><b>CDN Availability</b> (click to show)</summary>
| CDN | URL |
|-----------:|:-------------------------------------------|
| `unpkg` | <https://unpkg.com/crc-32/> |
| `jsDelivr` | <https://jsdelivr.com/package/npm/crc-32> |
| `CDNjs` | <https://cdnjs.com/libraries/crc-32> |
</details>
Hosted versions are available at <https://cdn.sheetjs.com/>:
- `crc32.js` (CommonJS): <https://cdn.sheetjs.com/crc-32-latest/package/crc32.js>
- `crc32.mjs` (ESM): <https://cdn.sheetjs.com/crc-32-latest/package/crc32.mjs>
- `crc32c.js` (CommonJS): <https://cdn.sheetjs.com/crc-32-latest/package/crc32c.js>
- `crc32c.mjs` (ESM): <https://cdn.sheetjs.com/crc-32-latest/package/crc32c.mjs>
## Integration

View File

@ -1 +1 @@
CRC32.version = '1.2.2';
CRC32.version = '1.2.3';

View File

@ -25,7 +25,7 @@ var CRC32/*:CRC32Module*/;
/*eslint-enable */
/*jshint ignore:end */
}(function(CRC32/*:CRC32Module*/) {
CRC32.version = '1.2.2';
CRC32.version = '1.2.3';
/*::
type CRC32Type = number;
type ABuf = Array<number> | Buffer | Uint8Array;

View File

@ -23,7 +23,7 @@ var CRC32;
/*eslint-enable */
/*jshint ignore:end */
}(function(CRC32) {
CRC32.version = '1.2.2';
CRC32.version = '1.2.3';
/*global Int32Array */
function signed_crc_table() {
var c = 0, table = new Array(256);

View File

@ -1,7 +1,7 @@
/*! crc32.js (C) 2014-present SheetJS -- http://sheetjs.com */
/* vim: set ts=2: */
var CRC32 = {};
CRC32.version = '1.2.2';
CRC32.version = '1.2.3';
/*::
type CRC32Type = number;
type ABuf = Array<number> | Buffer | Uint8Array;

View File

@ -25,7 +25,7 @@ var CRC32C/*:CRC32Module*/;
/*eslint-enable */
/*jshint ignore:end */
}(function(CRC32C/*:CRC32Module*/) {
CRC32C.version = '1.2.2';
CRC32C.version = '1.2.3';
/*::
type CRC32Type = number;
type ABuf = Array<number> | Buffer | Uint8Array;

View File

@ -23,7 +23,7 @@ var CRC32C;
/*eslint-enable */
/*jshint ignore:end */
}(function(CRC32C) {
CRC32C.version = '1.2.2';
CRC32C.version = '1.2.3';
/*global Int32Array */
function signed_crc_table() {
var c = 0, table = new Array(256);

View File

@ -1,7 +1,7 @@
/*! crc32.js (C) 2014-present SheetJS -- http://sheetjs.com */
/* vim: set ts=2: */
var CRC32C = {};
CRC32C.version = '1.2.2';
CRC32C.version = '1.2.3';
/*::
type CRC32Type = number;
type ABuf = Array<number> | Buffer | Uint8Array;

View File

@ -1,6 +1,6 @@
{
"name": "crc-32",
"version": "1.2.2",
"version": "1.2.3",
"author": "sheetjs",
"description": "Pure-JS CRC-32",
"keywords": [ "crc", "crc32", "checksum" ],