From 0d4ce1062f3e043111c83869cce9fa4de0f59045 Mon Sep 17 00:00:00 2001 From: Kyle Barron Date: Wed, 4 Dec 2024 11:16:01 -0500 Subject: [PATCH] Bump pyo3-arrow to 0.6.0 (#266) --- pyo3-arrow/CHANGELOG.md | 15 ++++++++++++++- pyo3-arrow/Cargo.toml | 2 +- pyo3-arrow/README.md | 1 + 3 files changed, 16 insertions(+), 2 deletions(-) diff --git a/pyo3-arrow/CHANGELOG.md b/pyo3-arrow/CHANGELOG.md index 32d3c3b..78e4f1b 100644 --- a/pyo3-arrow/CHANGELOG.md +++ b/pyo3-arrow/CHANGELOG.md @@ -1,8 +1,21 @@ # Changelog +## [0.6.0] - 2024-12-04 + +### What's Changed + +* Bump pyo3-arrow to pyo3 0.23 by @kylebarron in https://github.com/kylebarron/arro3/pull/265 +* Add test for segmentation fault when converting arro3.core.Array to pyarrow.Array at interpreter exit by @3ok in https://github.com/kylebarron/arro3/pull/236 +* Implement FromPyObject for PyArrowBuffer by @kylebarron in https://github.com/kylebarron/arro3/pull/241 +* rust constructor for PyArrowBuffer by @kylebarron in https://github.com/kylebarron/arro3/pull/242 + +### New Contributors + +**Full Changelog**: https://github.com/kylebarron/arro3/compare/pyo3-arrow-v0.5.1...pyo3-arrow-v0.6.0 + ## [0.5.1] - 2024-10-14 -## What's Changed +### What's Changed - Fix `no-default-features` for pyo3-arrow by @kylebarron in https://github.com/kylebarron/arro3/pull/232 - Custom drop on PyBufferWrapper by @kylebarron in https://github.com/kylebarron/arro3/pull/231 diff --git a/pyo3-arrow/Cargo.toml b/pyo3-arrow/Cargo.toml index e0c8660..1d111b0 100644 --- a/pyo3-arrow/Cargo.toml +++ b/pyo3-arrow/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pyo3-arrow" -version = "0.5.1" +version = "0.6.0" authors = ["Kyle Barron "] edition = "2021" description = "Arrow integration for pyo3." diff --git a/pyo3-arrow/README.md b/pyo3-arrow/README.md index 24d2b0d..b0b9b2b 100644 --- a/pyo3-arrow/README.md +++ b/pyo3-arrow/README.md @@ -184,6 +184,7 @@ In this case, you must depend on `nanoarrow` and you can use the `to_nanoarrow` | 0.3.x | 0.21 | 53 | | 0.4.x | 0.21 | 53 | | 0.5.x | 0.22 | 53 | +| 0.6.x | 0.23 | 53 | ## Buffer Protocol