From ba5ee69714e87dbdfb18986a2cbc1cd46f435539 Mon Sep 17 00:00:00 2001 From: "Jorge C. Leitao" Date: Wed, 10 Aug 2022 21:07:44 +0000 Subject: [PATCH] Bumped version --- .github_changelog_generator | 4 ++-- CHANGELOG.md | 29 +++++++++++++++++++++++++++++ Cargo.toml | 2 +- 3 files changed, 32 insertions(+), 3 deletions(-) diff --git a/.github_changelog_generator b/.github_changelog_generator index b9c282a48..6a295d18f 100644 --- a/.github_changelog_generator +++ b/.github_changelog_generator @@ -1,5 +1,5 @@ -since-tag=v0.14.1 -future-release=v0.14.2 +since-tag=v0.14.0 +future-release=v0.15.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 3e243302b..498909f0b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,34 @@ # Changelog +## [v0.15.0](https://github.com/jorgecarleitao/parquet2/tree/v0.15.0) (2022-08-10) + +[Full Changelog](https://github.com/jorgecarleitao/parquet2/compare/v0.14.2...v0.15.0) + +**Breaking changes:** + +- Add `max_size` to `get_page_stream` and `get_page_iterator` [\#173](https://github.com/jorgecarleitao/parquet2/issues/173) +- Optional `async` [\#174](https://github.com/jorgecarleitao/parquet2/pull/174) ([jorgecarleitao](https://github.com/jorgecarleitao)) +- Privatized `CompressionLevel` [\#170](https://github.com/jorgecarleitao/parquet2/pull/170) ([jorgecarleitao](https://github.com/jorgecarleitao)) +- Delay deserialization of dictionary pages [\#160](https://github.com/jorgecarleitao/parquet2/pull/160) ([jorgecarleitao](https://github.com/jorgecarleitao)) + +**New features:** + +- Added feature flag to use zlib-ng backend for gzip [\#165](https://github.com/jorgecarleitao/parquet2/pull/165) ([ritchie46](https://github.com/ritchie46)) + +**Fixed bugs:** + +- Fixed OOM on malicious/malformed thrift [\#172](https://github.com/jorgecarleitao/parquet2/pull/172) ([jorgecarleitao](https://github.com/jorgecarleitao)) + +**Enhancements:** + +- Made `compute_page_row_intervals` public [\#171](https://github.com/jorgecarleitao/parquet2/pull/171) ([jorgecarleitao](https://github.com/jorgecarleitao)) +- Simplified interal code [\#168](https://github.com/jorgecarleitao/parquet2/pull/168) ([jorgecarleitao](https://github.com/jorgecarleitao)) +- cargo fmt [\#166](https://github.com/jorgecarleitao/parquet2/pull/166) ([ritchie46](https://github.com/ritchie46)) + +**Testing updates:** + +- Improved coverage report [\#175](https://github.com/jorgecarleitao/parquet2/pull/175) ([jorgecarleitao](https://github.com/jorgecarleitao)) + ## [v0.14.2](https://github.com/jorgecarleitao/parquet2/tree/v0.14.2) (2022-07-26) [Full Changelog](https://github.com/jorgecarleitao/parquet2/compare/v0.14.1...v0.14.2) diff --git a/Cargo.toml b/Cargo.toml index 3b59f2451..a80ac2224 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "parquet2" -version = "0.14.2" +version = "0.15.0" license = "Apache-2.0" description = "Safe implementation of parquet IO." authors = ["Jorge C. Leitao "]