From 06892e9e2855517ebdd9fc5b777d4a4e9d76e637 Mon Sep 17 00:00:00 2001 From: "Jorge C. Leitao" Date: Tue, 14 Sep 2021 05:41:09 +0000 Subject: [PATCH] Bumped version. --- .github_changelog_generator | 4 ++-- CHANGELOG.md | 22 ++++++++++++++++++++++ Cargo.toml | 2 +- 3 files changed, 25 insertions(+), 3 deletions(-) diff --git a/.github_changelog_generator b/.github_changelog_generator index 7f852ae3d37..e5305586c72 100644 --- a/.github_changelog_generator +++ b/.github_changelog_generator @@ -1,5 +1,5 @@ -since-tag=v0.5.0 -future-release=v0.5.1 +since-tag=v0.5.2 +future-release=v0.5.3 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 ed071ca7dc7..df6e60632ee 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,27 @@ # Changelog +## [v0.5.3](https://github.com/jorgecarleitao/arrow2/tree/v0.5.3) (2021-09-14) + +[Full Changelog](https://github.com/jorgecarleitao/arrow2/compare/v0.5.2...v0.5.3) + +**New features:** + +- Added support to read and write extension types to and from parquet [\#396](https://github.com/jorgecarleitao/arrow2/pull/396) ([jorgecarleitao](https://github.com/jorgecarleitao)) + +**Fixed bugs:** + +- Fixed error writing dictionary extension to IPC [\#397](https://github.com/jorgecarleitao/arrow2/pull/397) ([jorgecarleitao](https://github.com/jorgecarleitao)) +- Fixed error in extending `MutableBitmap` [\#393](https://github.com/jorgecarleitao/arrow2/pull/393) ([jorgecarleitao](https://github.com/jorgecarleitao)) + +**Enhancements:** + +- Added support to read dict-encoded required primitive types from parquet [\#402](https://github.com/jorgecarleitao/arrow2/pull/402) ([Dandandan](https://github.com/Dandandan)) +- Added `Array::with_validity` [\#399](https://github.com/jorgecarleitao/arrow2/pull/399) ([ritchie46](https://github.com/ritchie46)) + +**Testing updates:** + +- Fix testing of SIMD [\#394](https://github.com/jorgecarleitao/arrow2/pull/394) ([jorgecarleitao](https://github.com/jorgecarleitao)) + ## [v0.5.1](https://github.com/jorgecarleitao/arrow2/tree/v0.5.1) (2021-09-09) [Full Changelog](https://github.com/jorgecarleitao/arrow2/compare/v0.5.0...v0.5.1) diff --git a/Cargo.toml b/Cargo.toml index 344ae83bde3..61256afcd44 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "arrow2" -version = "0.5.2" +version = "0.5.3" license = "Apache-2.0" description = "Unofficial implementation of Apache Arrow spec in safe Rust" homepage = "https://github.com/jorgecarleitao/arrow2"