Skip to content

Commit

Permalink
Bump version to 0.3.0 (#74)
Browse files Browse the repository at this point in the history
  • Loading branch information
kylebarron committed Apr 4, 2022
1 parent 1612e99 commit 1c13ef9
Show file tree
Hide file tree
Showing 2 changed files with 40 additions and 23 deletions.
61 changes: 39 additions & 22 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,29 +1,46 @@
# Changelog

## [0.3.0] - 2022-04-04

## What's Changed

- Debug cli by @kylebarron in https://github.com/kylebarron/parquet-wasm/pull/64
- Bump to arrow 11.0 to support zstd compression by @kylebarron in https://github.com/kylebarron/parquet-wasm/pull/66
- Update bundling by @kylebarron in https://github.com/kylebarron/parquet-wasm/pull/67
- Add dependabot by @kylebarron in https://github.com/kylebarron/parquet-wasm/pull/70
- Bump clap from 3.1.6 to 3.1.8 by @dependabot in https://github.com/kylebarron/parquet-wasm/pull/71
- Bump getrandom from 0.2.5 to 0.2.6 by @dependabot in https://github.com/kylebarron/parquet-wasm/pull/72

## New Contributors

- @dependabot made their first contribution in https://github.com/kylebarron/parquet-wasm/pull/71

**Full Changelog**: https://github.com/kylebarron/parquet-wasm/compare/v0.2.0...v0.3.0

## [0.2.0] - 2022-03-17

* Restore arrow-rs support by @kylebarron in https://github.com/kylebarron/parquet-wasm/pull/21
* Write parquet with arrow1 by @kylebarron in https://github.com/kylebarron/parquet-wasm/pull/23
* Refactor code into lower-level functions, use `?` operator by @kylebarron in https://github.com/kylebarron/parquet-wasm/pull/25
* Make record batch size the nrows of the first row group by @kylebarron in https://github.com/kylebarron/parquet-wasm/pull/26
* Rename arrow-rs api as default by @kylebarron in https://github.com/kylebarron/parquet-wasm/pull/31
* Implement writerPropertiesBuilder for arrow1 by @kylebarron in https://github.com/kylebarron/parquet-wasm/pull/30
* Refactor into modules by @kylebarron in https://github.com/kylebarron/parquet-wasm/pull/32
* Update bundling to create arrow2 entrypoints by @kylebarron in https://github.com/kylebarron/parquet-wasm/pull/33
* Node testing setup by @kylebarron in https://github.com/kylebarron/parquet-wasm/pull/34
* Helper to copy vec<u8> to Uint8Array by @kylebarron in https://github.com/kylebarron/parquet-wasm/pull/38
* Faster builds on Node CI tests by @kylebarron in https://github.com/kylebarron/parquet-wasm/pull/39
* Rust CI caching by @kylebarron in https://github.com/kylebarron/parquet-wasm/pull/40
* ZSTD mac instructions in readme by @kylebarron in https://github.com/kylebarron/parquet-wasm/pull/42
* Keep opt-level = s and remove `console_error_panic_hook` by @kylebarron in https://github.com/kylebarron/parquet-wasm/pull/48
* WriterPropertiesBuilder for arrow2 by @kylebarron in https://github.com/kylebarron/parquet-wasm/pull/49
* Docstrings for public functions, structs, enums by @kylebarron in https://github.com/kylebarron/parquet-wasm/pull/50
* Compression-specific features by @kylebarron in https://github.com/kylebarron/parquet-wasm/pull/51
* Add more node tests by @kylebarron in https://github.com/kylebarron/parquet-wasm/pull/52
* Separate reader and writer features by @kylebarron in https://github.com/kylebarron/parquet-wasm/pull/47
* Docs update by @kylebarron in https://github.com/kylebarron/parquet-wasm/pull/53
* Working typedoc by @kylebarron in https://github.com/kylebarron/parquet-wasm/pull/55
* Update docstrings and readme by @kylebarron in https://github.com/kylebarron/parquet-wasm/pull/60
- Restore arrow-rs support by @kylebarron in https://github.com/kylebarron/parquet-wasm/pull/21
- Write parquet with arrow1 by @kylebarron in https://github.com/kylebarron/parquet-wasm/pull/23
- Refactor code into lower-level functions, use `?` operator by @kylebarron in https://github.com/kylebarron/parquet-wasm/pull/25
- Make record batch size the nrows of the first row group by @kylebarron in https://github.com/kylebarron/parquet-wasm/pull/26
- Rename arrow-rs api as default by @kylebarron in https://github.com/kylebarron/parquet-wasm/pull/31
- Implement writerPropertiesBuilder for arrow1 by @kylebarron in https://github.com/kylebarron/parquet-wasm/pull/30
- Refactor into modules by @kylebarron in https://github.com/kylebarron/parquet-wasm/pull/32
- Update bundling to create arrow2 entrypoints by @kylebarron in https://github.com/kylebarron/parquet-wasm/pull/33
- Node testing setup by @kylebarron in https://github.com/kylebarron/parquet-wasm/pull/34
- Helper to copy vec<u8> to Uint8Array by @kylebarron in https://github.com/kylebarron/parquet-wasm/pull/38
- Faster builds on Node CI tests by @kylebarron in https://github.com/kylebarron/parquet-wasm/pull/39
- Rust CI caching by @kylebarron in https://github.com/kylebarron/parquet-wasm/pull/40
- ZSTD mac instructions in readme by @kylebarron in https://github.com/kylebarron/parquet-wasm/pull/42
- Keep opt-level = s and remove `console_error_panic_hook` by @kylebarron in https://github.com/kylebarron/parquet-wasm/pull/48
- WriterPropertiesBuilder for arrow2 by @kylebarron in https://github.com/kylebarron/parquet-wasm/pull/49
- Docstrings for public functions, structs, enums by @kylebarron in https://github.com/kylebarron/parquet-wasm/pull/50
- Compression-specific features by @kylebarron in https://github.com/kylebarron/parquet-wasm/pull/51
- Add more node tests by @kylebarron in https://github.com/kylebarron/parquet-wasm/pull/52
- Separate reader and writer features by @kylebarron in https://github.com/kylebarron/parquet-wasm/pull/47
- Docs update by @kylebarron in https://github.com/kylebarron/parquet-wasm/pull/53
- Working typedoc by @kylebarron in https://github.com/kylebarron/parquet-wasm/pull/55
- Update docstrings and readme by @kylebarron in https://github.com/kylebarron/parquet-wasm/pull/60

**Full Changelog**: https://github.com/kylebarron/parquet-wasm/compare/v0.1.1...v0.2.0

Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "parquet-wasm"
version = "0.2.0"
version = "0.3.0"
authors = ["Kyle Barron <kylebarron2@gmail.com>"]
edition = "2021"
description = "WebAssembly Parquet reader and writer."
Expand Down

0 comments on commit 1c13ef9

Please sign in to comment.