diff --git a/.github_changelog_generator b/.github_changelog_generator index eb62dde26ba..da56b677813 100644 --- a/.github_changelog_generator +++ b/.github_changelog_generator @@ -1,9 +1,9 @@ -since-tag=v0.9.1 +since-tag=v0.10.0 exclude-tags=v0.7.1,v0.8.1,v0.9.2 -future-release=v0.10.0 +future-release=v0.10.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"]}} enhancement-label=**New features:** enhancement-labels=feature -base=CHANGELOG.md \ No newline at end of file +base=CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md index cdace413991..283c2343d00 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,28 @@ # Changelog +## [v0.10.1](https://github.com/jorgecarleitao/arrow2/tree/v0.10.1) (2022-03-16) + +[Full Changelog](https://github.com/jorgecarleitao/arrow2/compare/v0.10.0...v0.10.1) + +**New features:** + +- Added support to write `StructArray` to Avro [\#909](https://github.com/jorgecarleitao/arrow2/pull/909) ([jorgecarleitao](https://github.com/jorgecarleitao)) +- Added support to write `ListArray` to Avro [\#908](https://github.com/jorgecarleitao/arrow2/pull/908) ([jorgecarleitao](https://github.com/jorgecarleitao)) + +**Fixed bugs:** + +- Fixed error in `FixedSizeBinaryArray::new_null` [\#914](https://github.com/jorgecarleitao/arrow2/pull/914) ([jorgecarleitao](https://github.com/jorgecarleitao)) + +**Enhancements:** + +- remove csv dependency for csv-write [\#917](https://github.com/jorgecarleitao/arrow2/pull/917) ([ritchie46](https://github.com/ritchie46)) +- Added `capacity` to some mutable arrays and tests [\#913](https://github.com/jorgecarleitao/arrow2/pull/913) ([jorgecarleitao](https://github.com/jorgecarleitao)) +- Support `sum`, `min` and `max` for extension and decimal [\#907](https://github.com/jorgecarleitao/arrow2/pull/907) ([jorgecarleitao](https://github.com/jorgecarleitao)) + +**Testing updates:** + +- Added more tests [\#910](https://github.com/jorgecarleitao/arrow2/pull/910) ([jorgecarleitao](https://github.com/jorgecarleitao)) + ## [v0.10.0](https://github.com/jorgecarleitao/arrow2/tree/v0.10.0) (2022-03-12) [Full Changelog](https://github.com/jorgecarleitao/arrow2/compare/v0.9.1...v0.10.0) diff --git a/Cargo.toml b/Cargo.toml index 9b5d4fcf88d..97542deea9f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "arrow2" -version = "0.10.0" +version = "0.10.1" license = "Apache-2.0" description = "Unofficial implementation of Apache Arrow spec in safe Rust" homepage = "https://github.com/jorgecarleitao/arrow2"