Skip to content

Commit

Permalink
remove dependency on ipc feature
Browse files Browse the repository at this point in the history
  • Loading branch information
pacman82 committed Sep 21, 2022
1 parent 213356e commit 0426486
Show file tree
Hide file tree
Showing 5 changed files with 64 additions and 53 deletions.
107 changes: 57 additions & 50 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 Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ crate-type = ["cdylib"]
arrow-odbc = "0.22.0"
# arrow would be included indirectly using arrow-odbc, but we need to explicitly specify the ffi
# feature.
arrow = { version = "22.0.0", default_features = false, features = ["ffi", "ipc"] }
arrow = { version = "23.0.0", default-features = false, features = ["ffi"] }
lazy_static = "1.4.0"

[profile.release]
Expand Down
4 changes: 4 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## 0.3.3

- Update Rust dependencies

## 0.3.2

- Disabled arrow default features again for leaner build. They had been enabled to workaround an upstream bug, there the `ffi` feature has not been self reliant. This update uses a smaller workaround and only enables the `ipc` feature in addition to `ffi`.
Expand Down
2 changes: 1 addition & 1 deletion doc/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
author = "Markus Klein"

# The full version, including alpha/beta/rc tags
release = "0.3.2"
release = "0.3.3"


# -- General configuration ---------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ name = "arrow-odbc"
authors = [{name = "Markus Klein"}]
description="Read the data of an ODBC data source as sequence of Apache Arrow record batches."
readme = "README.md"
version = "0.3.2"
version = "0.3.3"
dependencies = ["cffi", "pyarrow"]

[project.license]
Expand Down

0 comments on commit 0426486

Please sign in to comment.