From 81bf0941a42181d0d214acd932ff0b0f025cc055 Mon Sep 17 00:00:00 2001 From: "Jorge C. Leitao" Date: Sun, 15 May 2022 06:28:39 +0000 Subject: [PATCH] Bumped version --- .github_changelog_generator | 4 ++-- CHANGELOG.md | 8 ++++++++ Cargo.toml | 2 +- 3 files changed, 11 insertions(+), 3 deletions(-) diff --git a/.github_changelog_generator b/.github_changelog_generator index e8841bd4a..671ce8256 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.12.1 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..b62a72357 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## [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) + +**Fixed bugs:** + +- Fixed error in compressing lz4raw with large offsets [\#140](https://github.com/jorgecarleitao/parquet2/pull/140) ([jorgecarleitao](https://github.com/jorgecarleitao)) + ## [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 21ca03f0f..ba36bcff6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "parquet2" -version = "0.12.0" +version = "0.12.1" license = "Apache-2.0" description = "Safe implementation of parquet IO." authors = ["Jorge C. Leitao "]