Skip to content

Commit

Permalink
Update datafusion versions (#1793)
Browse files Browse the repository at this point in the history
  • Loading branch information
matthewmturner authored Feb 9, 2022
1 parent 1bedaf3 commit 2236840
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion ballista/rust/client/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ tempfile = "3"
sqlparser = "0.13"
parking_lot = "0.12"

datafusion = { path = "../../../datafusion", version = "6.0.0" }
datafusion = { path = "../../../datafusion", version = "7.0.0" }

[features]
default = []
Expand Down
2 changes: 1 addition & 1 deletion ballista/rust/client/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ To build a simple ballista example, add the following dependencies to your `Carg
```toml
[dependencies]
ballista = "0.6"
datafusion = "6.0"
datafusion = "7.0"
tokio = "1.0"
```

Expand Down
2 changes: 1 addition & 1 deletion ballista/rust/core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ clap = { version = "3", features = ["derive", "cargo"] }
parse_arg = "0.1.3"

arrow-flight = { version = "8.0.0" }
datafusion = { path = "../../../datafusion", version = "6.0.0" }
datafusion = { path = "../../../datafusion", version = "7.0.0" }

parking_lot = "0.12"

Expand Down
2 changes: 1 addition & 1 deletion ballista/rust/executor/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ anyhow = "1"
async-trait = "0.1.36"
ballista-core = { path = "../core", version = "0.6.0" }
configure_me = "0.4.0"
datafusion = { path = "../../../datafusion", version = "6.0.0" }
datafusion = { path = "../../../datafusion", version = "7.0.0" }
env_logger = "0.9"
futures = "0.3"
log = "0.4"
Expand Down
2 changes: 1 addition & 1 deletion ballista/rust/scheduler/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ anyhow = "1"
ballista-core = { path = "../core", version = "0.6.0" }
clap = { version = "3", features = ["derive", "cargo"] }
configure_me = "0.4.0"
datafusion = { path = "../../../datafusion", version = "6.0.0" }
datafusion = { path = "../../../datafusion", version = "7.0.0" }
env_logger = "0.9"
etcd-client = { version = "0.8", optional = true }
futures = "0.3"
Expand Down
4 changes: 2 additions & 2 deletions datafusion-cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
[package]
name = "datafusion-cli"
description = "DataFusion is an in-memory query engine that uses Apache Arrow as the memory model. It supports executing SQL queries against CSV and Parquet files as well as querying directly against in-memory data."
version = "6.0.0"
version = "7.0.0"
authors = ["Apache Arrow <dev@arrow.apache.org>"]
edition = "2021"
keywords = [ "arrow", "datafusion", "ballista", "query", "sql" ]
Expand All @@ -31,7 +31,7 @@ rust-version = "1.58"
clap = { version = "3", features = ["derive", "cargo"] }
rustyline = "9.0"
tokio = { version = "1.0", features = ["macros", "rt", "rt-multi-thread", "sync", "parking_lot"] }
datafusion = { path = "../datafusion", version = "6.0.0" }
datafusion = { path = "../datafusion", version = "7.0.0" }
arrow = { version = "8.0.0" }
ballista = { path = "../ballista/rust/client", version = "0.6.0" }
env_logger = "0.9"
2 changes: 1 addition & 1 deletion datafusion/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
[package]
name = "datafusion"
description = "DataFusion is an in-memory query engine that uses Apache Arrow as the memory model"
version = "6.0.0"
version = "7.0.0"
homepage = "https://github.com/apache/arrow-datafusion"
repository = "https://github.com/apache/arrow-datafusion"
readme = "../README.md"
Expand Down

0 comments on commit 2236840

Please sign in to comment.