Skip to content

Commit

Permalink
Bump to 0.3.1 (#188)
Browse files Browse the repository at this point in the history
  • Loading branch information
kylebarron authored Sep 11, 2024
1 parent 2d35fa4 commit 3ba9d10
Show file tree
Hide file tree
Showing 7 changed files with 57 additions and 34 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@

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

## [0.3.1] - 2024-09-11

### Bug fixes :bug:

- Enable IPC compression by @kylebarron in https://github.com/kylebarron/arro3/pull/187

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

## [0.3.0] - 2024-08-27

### Enhancements :magic_wand:
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.

12 changes: 12 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,18 @@
members = ["arro3-compute", "arro3-core", "arro3-io", "pyo3-arrow"]
resolver = "2"

[workspace.package]
# Package version for arro3-*, not for pyo3-arrow
version = "0.3.1"
authors = ["Kyle Barron <kylebarron2@gmail.com>"]
edition = "2021"
homepage = "https://kylebarron.dev/arro3"
repository = "https://github.com/kylebarron/arro3"
license = "MIT OR Apache-2.0"
keywords = ["python", "arrow"]
categories = []
rust-version = "1.75"

[workspace.dependencies]
arrow = { version = "53", features = ["ffi"] }
arrow-array = "53"
Expand Down
17 changes: 9 additions & 8 deletions arro3-compute/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,15 +1,16 @@
[package]
name = "arro3-compute"
version = "0.3.0"
authors = ["Kyle Barron <kylebarron2@gmail.com>"]
edition = "2021"
version = { workspace = true }
authors = { workspace = true }
edition = { workspace = true }
description = "Rust-based compute kernels for Arrow in Python."
readme = "README.md"
repository = "https://github.com/kylebarron/arro3"
license = "MIT OR Apache-2.0"
keywords = ["python", "arrow"]
categories = []
rust-version = "1.75"
repository = { workspace = true }
homepage = { workspace = true }
license = { workspace = true }
keywords = { workspace = true }
categories = { workspace = true }
rust-version = { workspace = true }

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
Expand Down
17 changes: 9 additions & 8 deletions arro3-core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,15 +1,16 @@
[package]
name = "arro3-core"
version = "0.3.0"
authors = ["Kyle Barron <kylebarron2@gmail.com>"]
edition = "2021"
version = { workspace = true }
authors = { workspace = true }
edition = { workspace = true }
description = "Core library for representing Arrow data in Python."
readme = "README.md"
repository = "https://github.com/kylebarron/arro3"
license = "MIT OR Apache-2.0"
keywords = ["python", "arrow"]
categories = []
rust-version = "1.75"
repository = { workspace = true }
homepage = { workspace = true }
license = { workspace = true }
keywords = { workspace = true }
categories = { workspace = true }
rust-version = { workspace = true }

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
Expand Down
17 changes: 9 additions & 8 deletions arro3-io/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,15 +1,16 @@
[package]
name = "arro3-io"
version = "0.3.0"
authors = ["Kyle Barron <kylebarron2@gmail.com>"]
edition = "2021"
version = { workspace = true }
authors = { workspace = true }
edition = { workspace = true }
description = "Rust-based readers and writers for Arrow in Python."
readme = "README.md"
repository = "https://github.com/kylebarron/arro3"
license = "MIT OR Apache-2.0"
keywords = ["python", "arrow"]
categories = []
rust-version = "1.75"
repository = { workspace = true }
homepage = { workspace = true }
license = { workspace = true }
keywords = { workspace = true }
categories = { workspace = true }
rust-version = { workspace = true }

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
Expand Down
14 changes: 7 additions & 7 deletions pyo3-arrow/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
[package]
name = "pyo3-arrow"
version = "0.2.0"
authors = ["Kyle Barron <kylebarron2@gmail.com>"]
edition = "2021"
authors = { workspace = true }
edition = { workspace = true }
description = "Arrow integration for pyo3."
readme = "README.md"
repository = "https://github.com/kylebarron/arro3"
license = "MIT OR Apache-2.0"
keywords = ["python", "arrow"]
categories = []
rust-version = "1.75"
repository = { workspace = true }
license = { workspace = true }
keywords = { workspace = true }
categories = { workspace = true }
rust-version = { workspace = true }

[dependencies]
arrow-array = { workspace = true }
Expand Down

0 comments on commit 3ba9d10

Please sign in to comment.