Publish v1.11.1

This commit is contained in:
Kenny Daniel 2025-04-09 17:35:10 -07:00
parent 972402d083
commit 8740f14450
No known key found for this signature in database
GPG Key ID: 90AB653A8CAD7E45
3 changed files with 4 additions and 2 deletions

@ -58,7 +58,7 @@ const file = await asyncBufferFromFile(filename)
const data = await parquetReadObjects({ file })
```
Note: Hyparquet is published as an ES module, so dynamic `import()` may be required on the command line.
Note: hyparquet is published as an ES module, so dynamic `import()` may be required on the command line.
### Browser Example

@ -1,10 +1,11 @@
{
"name": "hyparquet",
"version": "1.11.0",
"version": "1.11.1",
"description": "Parquet file parser for JavaScript",
"author": "Hyperparam",
"homepage": "https://hyperparam.app",
"keywords": [
"hyperparam",
"hyparquet",
"parquet",
"parquetjs",

@ -48,6 +48,7 @@ export function parquetReadObjects(options) {
* @typedef {import('../src/types.d.ts').Encoding} Encoding
* @typedef {import('../src/types.d.ts').CompressionCodec} CompressionCodec
* @typedef {import('../src/types.d.ts').Compressors} Compressors
* @typedef {import('../src/types.d.ts').KeyValue} KeyValue
* @typedef {import('../src/types.d.ts').Statistics} Statistics
* @typedef {import('../src/types.d.ts').PageType} PageType
* @typedef {import('../src/types.d.ts').PageHeader} PageHeader