diff --git a/.github_changelog_generator b/.github_changelog_generator index 30a3cf195..e8841bd4a 100644 --- a/.github_changelog_generator +++ b/.github_changelog_generator @@ -1,5 +1,5 @@ -since-tag=v0.10.3 -future-release=v0.11.0 +since-tag=v0.11.0 +future-release=v0.12.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 642e4eec8..fe3e13c92 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,18 @@ # Changelog +## [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) + +**Breaking changes:** + +- Add `CompressionOptions`, which allows for zstd compression levels. [\#128](https://github.com/jorgecarleitao/parquet2/pull/128) ([TurnOfACard](https://github.com/TurnOfACard)) + +**Enhancements:** + +- Improved performance of RLE decoding \(-18%\) [\#130](https://github.com/jorgecarleitao/parquet2/pull/130) ([jorgecarleitao](https://github.com/jorgecarleitao)) +- Improved perf of bitpacking decoding \(3.5x\) [\#129](https://github.com/jorgecarleitao/parquet2/pull/129) ([jorgecarleitao](https://github.com/jorgecarleitao)) + ## [v0.11.0](https://github.com/jorgecarleitao/parquet2/tree/v0.11.0) (2022-04-15) [Full Changelog](https://github.com/jorgecarleitao/parquet2/compare/v0.10.3...v0.11.0) diff --git a/Cargo.toml b/Cargo.toml index 54b0dc80c..21ca03f0f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,9 +1,12 @@ [package] name = "parquet2" -version = "0.11.0" +version = "0.12.0" license = "Apache-2.0" description = "Safe implementation of parquet IO." authors = ["Jorge C. Leitao "] +keywords = [ "analytics", "parquet" ] +homepage = "https://github.com/jorgecarleitao/parquet2" +repository = "https://github.com/jorgecarleitao/parquet2" readme = "README.md" edition = "2021"