Skip to content

Commit 3d298ce

Browse files
authored
Update changelog and bump to 0.2.0 (#62)
1 parent 4632f6a commit 3d298ce

File tree

3 files changed

+29
-2
lines changed

3 files changed

+29
-2
lines changed

CHANGELOG.md

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,32 @@
11
# Changelog
22

3+
## [0.2.0] - 2022-03-17
4+
5+
* Restore arrow-rs support by @kylebarron in https://github.com/kylebarron/parquet-wasm/pull/21
6+
* Write parquet with arrow1 by @kylebarron in https://github.com/kylebarron/parquet-wasm/pull/23
7+
* Refactor code into lower-level functions, use `?` operator by @kylebarron in https://github.com/kylebarron/parquet-wasm/pull/25
8+
* Make record batch size the nrows of the first row group by @kylebarron in https://github.com/kylebarron/parquet-wasm/pull/26
9+
* Rename arrow-rs api as default by @kylebarron in https://github.com/kylebarron/parquet-wasm/pull/31
10+
* Implement writerPropertiesBuilder for arrow1 by @kylebarron in https://github.com/kylebarron/parquet-wasm/pull/30
11+
* Refactor into modules by @kylebarron in https://github.com/kylebarron/parquet-wasm/pull/32
12+
* Update bundling to create arrow2 entrypoints by @kylebarron in https://github.com/kylebarron/parquet-wasm/pull/33
13+
* Node testing setup by @kylebarron in https://github.com/kylebarron/parquet-wasm/pull/34
14+
* Helper to copy vec<u8> to Uint8Array by @kylebarron in https://github.com/kylebarron/parquet-wasm/pull/38
15+
* Faster builds on Node CI tests by @kylebarron in https://github.com/kylebarron/parquet-wasm/pull/39
16+
* Rust CI caching by @kylebarron in https://github.com/kylebarron/parquet-wasm/pull/40
17+
* ZSTD mac instructions in readme by @kylebarron in https://github.com/kylebarron/parquet-wasm/pull/42
18+
* Keep opt-level = s and remove `console_error_panic_hook` by @kylebarron in https://github.com/kylebarron/parquet-wasm/pull/48
19+
* WriterPropertiesBuilder for arrow2 by @kylebarron in https://github.com/kylebarron/parquet-wasm/pull/49
20+
* Docstrings for public functions, structs, enums by @kylebarron in https://github.com/kylebarron/parquet-wasm/pull/50
21+
* Compression-specific features by @kylebarron in https://github.com/kylebarron/parquet-wasm/pull/51
22+
* Add more node tests by @kylebarron in https://github.com/kylebarron/parquet-wasm/pull/52
23+
* Separate reader and writer features by @kylebarron in https://github.com/kylebarron/parquet-wasm/pull/47
24+
* Docs update by @kylebarron in https://github.com/kylebarron/parquet-wasm/pull/53
25+
* Working typedoc by @kylebarron in https://github.com/kylebarron/parquet-wasm/pull/55
26+
* Update docstrings and readme by @kylebarron in https://github.com/kylebarron/parquet-wasm/pull/60
27+
28+
**Full Changelog**: https://github.com/kylebarron/parquet-wasm/compare/v0.1.1...v0.2.0
29+
330
## [0.1.1] - 2022-03-06
431

532
- Attempt better bundling, with APIs for bundlers, Node, and the Web.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "parquet-wasm"
3-
version = "0.1.1"
3+
version = "0.2.0"
44
authors = ["Kyle Barron <[email protected]>"]
55
edition = "2021"
66
description = "WebAssembly Parquet reader and writer."

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# `parquet-wasm`
1+
# WASM Parquet [![npm version](https://img.shields.io/npm/v/parquet-wasm.svg)](https://www.npmjs.com/package/parquet-wasm)
22

33
WebAssembly bindings to read and write the [Apache Parquet](https://parquet.apache.org/) format to and from [Apache Arrow](https://arrow.apache.org/).
44

0 commit comments

Comments
 (0)