From de6039b6a36810eff66d7cde906f8f081c2674e5 Mon Sep 17 00:00:00 2001 From: "Jorge C. Leitao" Date: Tue, 31 May 2022 17:53:29 +0000 Subject: [PATCH] Bumped version --- .github_changelog_generator | 4 ++-- CHANGELOG.md | 37 +++++++++++++++++++++++++++++++++++++ Cargo.toml | 2 +- 3 files changed, 40 insertions(+), 3 deletions(-) diff --git a/.github_changelog_generator b/.github_changelog_generator index e8841bd4a..7b26c2662 100644 --- a/.github_changelog_generator +++ b/.github_changelog_generator @@ -1,5 +1,5 @@ -since-tag=v0.11.0 -future-release=v0.12.0 +since-tag=v0.12.0 +future-release=v0.13.0 pr-wo-labels=false exclude-labels=no-changelog,question add-sections={"features":{"prefix":"**Enhancements:**","labels":["enhancement"]}, "documentation":{"prefix":"**Documentation updates:**","labels":["documentation"]}, "testing":{"prefix":"**Testing updates:**","labels":["testing"]}} diff --git a/CHANGELOG.md b/CHANGELOG.md index fe3e13c92..2f51c3885 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,42 @@ # Changelog +## [v0.13.0](https://github.com/jorgecarleitao/parquet2/tree/v0.13.0) (2022-05-31) + +[Full Changelog](https://github.com/jorgecarleitao/parquet2/compare/v0.12.1...v0.13.0) + +**Breaking changes:** + +- Removed unused cargo feature [\#145](https://github.com/jorgecarleitao/parquet2/pull/145) ([jorgecarleitao](https://github.com/jorgecarleitao)) +- Fix potential misuse of FileWriter API's \(sync + async\) [\#138](https://github.com/jorgecarleitao/parquet2/pull/138) ([TurnOfACard](https://github.com/TurnOfACard)) + +**New features:** + +- Added new\_with\_page\_meta to PageReader [\#136](https://github.com/jorgecarleitao/parquet2/pull/136) ([ygf11](https://github.com/ygf11)) +- Added compression options/levels for GZIP and BROTLI codecs. [\#132](https://github.com/jorgecarleitao/parquet2/pull/132) ([TurnOfACard](https://github.com/TurnOfACard)) + +**Fixed bugs:** + +- Async FileStreamer does not write statistics [\#139](https://github.com/jorgecarleitao/parquet2/issues/139) +- Fixed error in compressing lz4raw with large offsets [\#140](https://github.com/jorgecarleitao/parquet2/pull/140) ([jorgecarleitao](https://github.com/jorgecarleitao)) + +**Enhancements:** + +- Improved read of metadata [\#143](https://github.com/jorgecarleitao/parquet2/pull/143) ([jorgecarleitao](https://github.com/jorgecarleitao)) +- Simplified async metadata read [\#137](https://github.com/jorgecarleitao/parquet2/pull/137) ([jorgecarleitao](https://github.com/jorgecarleitao)) + +**Testing updates:** + +- Lifted duplicated code to a function [\#141](https://github.com/jorgecarleitao/parquet2/pull/141) ([jorgecarleitao](https://github.com/jorgecarleitao)) +- Improved Integration test documentation and expanded tests [\#133](https://github.com/jorgecarleitao/parquet2/pull/133) ([TurnOfACard](https://github.com/TurnOfACard)) + +## [v0.12.1](https://github.com/jorgecarleitao/parquet2/tree/v0.12.1) (2022-05-15) + +[Full Changelog](https://github.com/jorgecarleitao/parquet2/compare/v0.12.0...v0.12.1) + +**Enhancements:** + +- Pass only necessary data when create PageReader [\#135](https://github.com/jorgecarleitao/parquet2/issues/135) + ## [v0.12.0](https://github.com/jorgecarleitao/parquet2/tree/v0.12.0) (2022-04-22) [Full Changelog](https://github.com/jorgecarleitao/parquet2/compare/v0.11.0...v0.12.0) diff --git a/Cargo.toml b/Cargo.toml index 041b881de..ddff458a9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "parquet2" -version = "0.12.0" +version = "0.13.0" license = "Apache-2.0" description = "Safe implementation of parquet IO." authors = ["Jorge C. Leitao "]