diff --git a/.github_changelog_generator b/.github_changelog_generator index 47d1b0de983..d935a30984c 100644 --- a/.github_changelog_generator +++ b/.github_changelog_generator @@ -1,6 +1,6 @@ -since-tag=v0.10.1 +since-tag=v0.11.0 exclude-tags=v0.7.1,v0.8.1,v0.9.2 -future-release=v0.11.0 +future-release=v0.11.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 6d876851c26..4f848167792 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## [v0.11.1](https://github.com/jorgecarleitao/arrow2/tree/v0.11.1) (2022-04-27) + +[Full Changelog](https://github.com/jorgecarleitao/arrow2/compare/v0.11.0...v0.11.1) + +**Fixed bugs:** + +- Fixed bug in writing csv with buffer resizing [\#965](https://github.com/jorgecarleitao/arrow2/pull/965) ([ritchie46](https://github.com/ritchie46)) + ## [v0.11.0](https://github.com/jorgecarleitao/arrow2/tree/v0.11.0) (2022-04-27) [Full Changelog](https://github.com/jorgecarleitao/arrow2/compare/v0.10.1...v0.11.0) diff --git a/Cargo.toml b/Cargo.toml index 95e8e4a3b96..c270e9fbb25 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "arrow2" -version = "0.11.0" +version = "0.11.1" license = "Apache-2.0" description = "Unofficial implementation of Apache Arrow spec in safe Rust" homepage = "https://github.com/jorgecarleitao/arrow2"