From f3ce3f5daf526b9fb80ef0f4fd62181ec42e5d2c Mon Sep 17 00:00:00 2001 From: Kyle Barron Date: Mon, 14 Oct 2024 11:02:24 -0400 Subject: [PATCH] Bump arro3 to 0.4.2 (#234) * Bump to 0.4.2 * update changelog --- CHANGELOG.md | 9 +++++++++ Cargo.lock | 6 +++--- Cargo.toml | 2 +- 3 files changed, 13 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 781d427..9dfce70 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,15 @@ This is the changelog for arro3. pyo3-arrow has a separate changelog. +## [0.4.2] - 2024-10-14 + +### What's Changed + +- Ensure total numpy v2 support by @kylebarron in https://github.com/kylebarron/arro3/pull/226 +- Fix segfault when releasing buffer protocol object by @kylebarron in https://github.com/kylebarron/arro3/pull/231 + +**Full Changelog**: https://github.com/kylebarron/arro3/compare/py-v0.4.1...py-v0.4.2 + ## [0.4.1] - 2024-10-07 ### What's Changed diff --git a/Cargo.lock b/Cargo.lock index 00d316a..bfa8acb 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -63,7 +63,7 @@ dependencies = [ [[package]] name = "arro3-compute" -version = "0.4.1" +version = "0.4.2" dependencies = [ "arrow", "arrow-array", @@ -78,7 +78,7 @@ dependencies = [ [[package]] name = "arro3-core" -version = "0.4.1" +version = "0.4.2" dependencies = [ "arrow-array", "arrow-buffer", @@ -89,7 +89,7 @@ dependencies = [ [[package]] name = "arro3-io" -version = "0.4.1" +version = "0.4.2" dependencies = [ "arrow", "arrow-array", diff --git a/Cargo.toml b/Cargo.toml index 1cfe5f4..eaa1ba9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,7 +4,7 @@ resolver = "2" [workspace.package] # Package version for arro3-*, not for pyo3-arrow -version = "0.4.1" +version = "0.4.2" authors = ["Kyle Barron "] edition = "2021" homepage = "https://kylebarron.dev/arro3"