Skip to content

Commit 01cafc9

Browse files
committed
version bump 1.2.3
1 parent 3bd2132 commit 01cafc9

File tree

9 files changed

+15
-20
lines changed

9 files changed

+15
-20
lines changed

README.md

Lines changed: 7 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -5,26 +5,21 @@ Emphasis on correctness, performance, and IE6+ support.
55

66
## Installation
77

8-
With [npm](https://www.npmjs.org/package/crc-32):
8+
With a node package manager like `npm`:
99

1010
```bash
11-
$ npm install crc-32
11+
$ npm i --save https://cdn.sheetjs.com/crc-32-latest/crc-32-latest.tgz
1212
```
1313

1414
When installed globally, npm installs a script `crc32` that computes the
1515
checksum for a specified file or standard input.
1616

17-
<details>
18-
<summary><b>CDN Availability</b> (click to show)</summary>
19-
20-
| CDN | URL |
21-
|-----------:|:-------------------------------------------|
22-
| `unpkg` | <https://unpkg.com/crc-32/> |
23-
| `jsDelivr` | <https://jsdelivr.com/package/npm/crc-32> |
24-
| `CDNjs` | <https://cdnjs.com/libraries/crc-32> |
25-
26-
</details>
17+
Hosted versions are available at <https://cdn.sheetjs.com/>:
2718

19+
- `crc32.js` (CommonJS): <https://cdn.sheetjs.com/crc-32-latest/package/crc32.js>
20+
- `crc32.mjs` (ESM): <https://cdn.sheetjs.com/crc-32-latest/package/crc32.mjs>
21+
- `crc32c.js` (CommonJS): <https://cdn.sheetjs.com/crc-32-latest/package/crc32c.js>
22+
- `crc32c.mjs` (ESM): <https://cdn.sheetjs.com/crc-32-latest/package/crc32c.mjs>
2823

2924
## Integration
3025

bits/01_version.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
CRC32.version = '1.2.2';
1+
CRC32.version = '1.2.3';

crc32.flow.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ var CRC32/*:CRC32Module*/;
2525
/*eslint-enable */
2626
/*jshint ignore:end */
2727
}(function(CRC32/*:CRC32Module*/) {
28-
CRC32.version = '1.2.2';
28+
CRC32.version = '1.2.3';
2929
/*::
3030
type CRC32Type = number;
3131
type ABuf = Array<number> | Buffer | Uint8Array;

crc32.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ var CRC32;
2323
/*eslint-enable */
2424
/*jshint ignore:end */
2525
}(function(CRC32) {
26-
CRC32.version = '1.2.2';
26+
CRC32.version = '1.2.3';
2727
/*global Int32Array */
2828
function signed_crc_table() {
2929
var c = 0, table = new Array(256);

crc32.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*! crc32.js (C) 2014-present SheetJS -- http://sheetjs.com */
22
/* vim: set ts=2: */
33
var CRC32 = {};
4-
CRC32.version = '1.2.2';
4+
CRC32.version = '1.2.3';
55
/*::
66
type CRC32Type = number;
77
type ABuf = Array<number> | Buffer | Uint8Array;

crc32c.flow.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ var CRC32C/*:CRC32Module*/;
2525
/*eslint-enable */
2626
/*jshint ignore:end */
2727
}(function(CRC32C/*:CRC32Module*/) {
28-
CRC32C.version = '1.2.2';
28+
CRC32C.version = '1.2.3';
2929
/*::
3030
type CRC32Type = number;
3131
type ABuf = Array<number> | Buffer | Uint8Array;

crc32c.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ var CRC32C;
2323
/*eslint-enable */
2424
/*jshint ignore:end */
2525
}(function(CRC32C) {
26-
CRC32C.version = '1.2.2';
26+
CRC32C.version = '1.2.3';
2727
/*global Int32Array */
2828
function signed_crc_table() {
2929
var c = 0, table = new Array(256);

crc32c.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*! crc32.js (C) 2014-present SheetJS -- http://sheetjs.com */
22
/* vim: set ts=2: */
33
var CRC32C = {};
4-
CRC32C.version = '1.2.2';
4+
CRC32C.version = '1.2.3';
55
/*::
66
type CRC32Type = number;
77
type ABuf = Array<number> | Buffer | Uint8Array;

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "crc-32",
3-
"version": "1.2.2",
3+
"version": "1.2.3",
44
"author": "sheetjs",
55
"description": "Pure-JS CRC-32",
66
"keywords": [ "crc", "crc32", "checksum" ],

0 commit comments

Comments
 (0)