From 281d55f7a7bb618193e94df290ea1a061241a2d8 Mon Sep 17 00:00:00 2001 From: Kyle Barron Date: Mon, 14 Oct 2024 10:51:16 -0400 Subject: [PATCH] bump pyo3-arrow to 0.5.1 (#233) --- Cargo.lock | 2 +- pyo3-arrow/CHANGELOG.md | 11 ++++++++++- pyo3-arrow/Cargo.toml | 2 +- 3 files changed, 12 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index ef95cab..00d316a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1022,7 +1022,7 @@ dependencies = [ [[package]] name = "pyo3-arrow" -version = "0.5.0" +version = "0.5.1" dependencies = [ "arrow", "arrow-array", diff --git a/pyo3-arrow/CHANGELOG.md b/pyo3-arrow/CHANGELOG.md index 71fb21f..32d3c3b 100644 --- a/pyo3-arrow/CHANGELOG.md +++ b/pyo3-arrow/CHANGELOG.md @@ -1,9 +1,18 @@ # Changelog -## [0.5.0] - 2024-10-11 +## [0.5.1] - 2024-10-14 ## 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 + +**Full Changelog**: https://github.com/kylebarron/arro3/compare/pyo3-arrow-v0.5.0...pyo3-arrow-v0.5.1 + +## [0.5.0] - 2024-10-11 + +### What's Changed + - Bump to pyo3 0.22 by @kylebarron in https://github.com/kylebarron/arro3/pull/226 **Full Changelog**: https://github.com/kylebarron/arro3/compare/pyo3-arrow-v0.4.0...pyo3-arrow-v0.5.0 diff --git a/pyo3-arrow/Cargo.toml b/pyo3-arrow/Cargo.toml index 903a2ca..f6e7193 100644 --- a/pyo3-arrow/Cargo.toml +++ b/pyo3-arrow/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pyo3-arrow" -version = "0.5.0" +version = "0.5.1" authors = { workspace = true } edition = { workspace = true } description = "Arrow integration for pyo3."