diff --git a/CHANGELOG.md b/CHANGELOG.md index d512b372..99d4ecef 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,19 @@ # Changelog +## [0.5.0] - 2023-10-21 + +## What's Changed + +- Switch to an API based on table abstractions from [arrow-wasm](https://github.com/kylebarron/arrow-wasm). +- Update docs +- Initial implementation of reading to a stream of Arrow batches. By @H-Plus-Time in https://github.com/kylebarron/parquet-wasm/pull/296 + +## New Contributors + +- @H-Plus-Time made their first contribution in https://github.com/kylebarron/parquet-wasm/pull/296 + +**Full Changelog**: https://github.com/kylebarron/parquet-wasm/compare/v0.4.0...v0.5.0 + ## [0.4.0] - 2023-08-15 ## What's Changed diff --git a/Cargo.lock b/Cargo.lock index b46c66e1..afe1d178 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1159,7 +1159,7 @@ dependencies = [ "thrift", "tokio", "twox-hash", - "zstd 0.12.4", + "zstd", ] [[package]] @@ -1174,7 +1174,7 @@ dependencies = [ [[package]] name = "parquet-wasm" -version = "0.5.0-alpha.1" +version = "0.5.0" dependencies = [ "arrow", "arrow-wasm", @@ -1197,7 +1197,7 @@ dependencies = [ "wasm-bindgen-test", "wasm-streams", "web-sys", - "zstd 0.13.0", + "zstd", ] [[package]] @@ -1215,7 +1215,7 @@ dependencies = [ "seq-macro", "snap", "streaming-decompression", - "zstd 0.12.4", + "zstd", ] [[package]] @@ -1960,16 +1960,7 @@ version = "0.12.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1a27595e173641171fc74a1232b7b1c7a7cb6e18222c11e9dfb9888fa424c53c" dependencies = [ - "zstd-safe 6.0.6", -] - -[[package]] -name = "zstd" -version = "0.13.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bffb3309596d527cfcba7dfc6ed6052f1d39dfbd7c867aa2e865e4a449c10110" -dependencies = [ - "zstd-safe 7.0.0", + "zstd-safe", ] [[package]] @@ -1982,15 +1973,6 @@ dependencies = [ "zstd-sys", ] -[[package]] -name = "zstd-safe" -version = "7.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "43747c7422e2924c11144d5229878b98180ef8b06cca4ab5af37afc8a8d8ea3e" -dependencies = [ - "zstd-sys", -] - [[package]] name = "zstd-sys" version = "2.0.8+zstd.1.5.5" diff --git a/Cargo.toml b/Cargo.toml index 8da635ee..70f991af 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "parquet-wasm" -version = "0.5.0-alpha.1" +version = "0.5.0" authors = ["Kyle Barron "] edition = "2021" description = "WebAssembly Parquet reader and writer."