Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,22 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

# Minarrow Rust

## 0.18.2 Minor Enhancements Release

## Added

- From<Arc<Value>> for `Value` and `as_any_mut` for `CustomValue`
- Multi-type validators `resolve_batches` and `confirm_batch_dtype` for `SuperArray` when the `allow_mixed_array_batches` is on.

## Optimisations
- Improved zero init for `Matrix` supporting fast initialisation.

## Bugfixes
- Fixed `SuperArrayV::slice` returning the parent array length instead of the windowed slice portion.

## Security Enhancements
- Added Validation of `offset+len` bounds in string kernels and `Buffer::from_shared_column`. *Thank you `ksj1230` for the PR.*

## 0.18.1 - 2026-09-10 HotFix
- This is a hot-fix release, as Decimal required a small change to ensure that precision is correctly self-describing on `Scalar`.
- It additionally includes:
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "minarrow"
version = "0.18.1"
version = "0.18.2"
edition = "2024"
authors = ['Peter G. Bower']
build = "build.rs"
Expand Down
2 changes: 1 addition & 1 deletion minarrow-py/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ cargo-features = ["trim-paths"]

[package]
name = "minarrow-py"
version = "0.18.1"
version = "0.18.2"
edition = "2024"
authors = ["Peter G. Bower"]
license = "Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion minarrow-py/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "maturin"

[project]
name = "minarrow"
version = "0.18.1"
version = "0.18.2"
description = "Minimal, straightforward and fast SIMD-compatible Apache Arrow inter-op for Python."
readme = "README.md"
requires-python = ">=3.9"
Expand Down
3 changes: 3 additions & 0 deletions pyo3/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.18.2] - 2026-09-19
- Bumped `minarrow` dependency from 0.18.1 to 0.18.2.

## [0.18.1] - 2026-09-10
- Bumped `minarrow` dependency from 0.18.0 to 0.18.1.

Expand Down
8 changes: 4 additions & 4 deletions pyo3/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions pyo3/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "minarrow-pyo3"
version = "0.18.1"
version = "0.18.2"
edition = "2024"
authors = ['Peter G. Bower']
license = "Apache-2.0"
Expand All @@ -24,7 +24,7 @@ name = "minarrow_pyo3"
crate-type = ["cdylib", "rlib"]

[dependencies]
minarrow = { version = "0.18.1", path = "..", features = ["large_string"] }
minarrow = { version = "0.18.2", path = "..", features = ["large_string"] }
pyo3 = { version = "0.29" }
thiserror = "2"

Expand Down
Loading