Skip to content

Commit

Permalink
python: Update to 0.3.0 (#174)
Browse files Browse the repository at this point in the history
  • Loading branch information
kylebarron authored Aug 27, 2024
1 parent e388617 commit 80ac526
Show file tree
Hide file tree
Showing 5 changed files with 30 additions and 7 deletions.
25 changes: 24 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,30 @@

This is the changelog for arro3. pyo3-arrow has a separate changelog.

## [0.2.0] - 2024-08-13
## [0.3.0] - 2024-08-27

### Enhancements :magic_wand:

- Wheels for pyodide are auto-built on CI and published to Github releases.
- Ensure Parquet schema metadata is added to arrow table by @kylebarron in https://github.com/kylebarron/arro3/pull/137
- Access dictionary array keys and values by @kylebarron in https://github.com/kylebarron/arro3/pull/139
- Support reading Parquet from file objects by @kylebarron in https://github.com/kylebarron/arro3/pull/142
- Implement dictionary encoding by @kylebarron in https://github.com/kylebarron/arro3/pull/136
- Support for Arrow scalars and converting to Python objects by @kylebarron in https://github.com/kylebarron/arro3/pull/159
- Move functional accessors to core module by @kylebarron in https://github.com/kylebarron/arro3/pull/151
- Support for python buffer protocol by @kylebarron in https://github.com/kylebarron/arro3/pull/156

### Bug fixes :bug:

- Fix field metadata propagation by @kylebarron in https://github.com/kylebarron/arro3/pull/150
- Set strip=true for maturin builds by @kylebarron in https://github.com/kylebarron/arro3/pull/155
- Support `__getitem__` with a negative index by @kylebarron in https://github.com/kylebarron/arro3/pull/171
- support f16 in from_numpy by @kylebarron in https://github.com/kylebarron/arro3/pull/154
- Fix writing to file by @kylebarron in https://github.com/kylebarron/arro3/pull/138

**Full Changelog**: https://github.com/kylebarron/arro3/compare/py-v0.2.1...py-v0.3.0

## [0.2.1] - 2024-08-13

### Bug fixes :bug:

Expand Down
6 changes: 3 additions & 3 deletions 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 arro3-compute/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "arro3-compute"
version = "0.3.0-beta.2"
version = "0.3.0"
authors = ["Kyle Barron <kylebarron2@gmail.com>"]
edition = "2021"
description = "Rust-based compute kernels for Arrow in Python."
Expand Down
2 changes: 1 addition & 1 deletion arro3-core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "arro3-core"
version = "0.3.0-beta.2"
version = "0.3.0"
authors = ["Kyle Barron <kylebarron2@gmail.com>"]
edition = "2021"
description = "Core library for representing Arrow data in Python."
Expand Down
2 changes: 1 addition & 1 deletion arro3-io/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "arro3-io"
version = "0.3.0-beta.2"
version = "0.3.0"
authors = ["Kyle Barron <kylebarron2@gmail.com>"]
edition = "2021"
description = "Rust-based readers and writers for Arrow in Python."
Expand Down

0 comments on commit 80ac526

Please sign in to comment.