From 27b298171d56d2de4865a0069843b4e107124348 Mon Sep 17 00:00:00 2001 From: Kyle Barron Date: Thu, 11 Jun 2026 13:04:50 -0400 Subject: [PATCH] chore: Prepare 0.8.1 --- CHANGELOG.md | 16 ++++++++++++++++ Cargo.lock | 6 +++--- Cargo.toml | 2 +- 3 files changed, 20 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index bf4f548..049fef6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,22 @@ This is the changelog for arro3. pyo3-arrow has a separate changelog. +## [0.8.1] - 2026-06-11 + +### What's Changed + +* feat: PEP 783 Emscripten wheels! by @kylebarron in https://github.com/kylebarron/arro3/pull/502 +* ci: Use trusted publishing for pypi by @kylebarron in https://github.com/kylebarron/arro3/pull/492 +* ci: Build arro3-io wheels for emscripten by @kylebarron in https://github.com/kylebarron/arro3/pull/504 +* fix: Add missing writer.finish() call by @cpnielsen in https://github.com/kylebarron/arro3/pull/497 + +### New Contributors + +* @gadomski made their first contribution in https://github.com/kylebarron/arro3/pull/490 +* @cpnielsen made their first contribution in https://github.com/kylebarron/arro3/pull/497 + +**Full Changelog**: https://github.com/kylebarron/arro3/compare/py-v0.8.0...py-v0.8.1 + ## [0.8.0] - 2026-02-22 ### Breaking Changes diff --git a/Cargo.lock b/Cargo.lock index b4d8622..3e01d29 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -63,7 +63,7 @@ checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c" [[package]] name = "arro3-compute" -version = "0.8.0" +version = "0.8.1" dependencies = [ "arrow-arith", "arrow-array", @@ -78,7 +78,7 @@ dependencies = [ [[package]] name = "arro3-core" -version = "0.8.0" +version = "0.8.1" dependencies = [ "arrow-array", "arrow-buffer", @@ -90,7 +90,7 @@ dependencies = [ [[package]] name = "arro3-io" -version = "0.8.0" +version = "0.8.1" dependencies = [ "arrow-array", "arrow-buffer", diff --git a/Cargo.toml b/Cargo.toml index e9ddf4c..661b3fc 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -9,7 +9,7 @@ resolver = "2" [workspace.package] # Package version for arro3-*, not for pyo3-arrow -version = "0.8.0" +version = "0.8.1" authors = ["Kyle Barron "] edition = "2021" homepage = "https://kylebarron.dev/arro3"