Skip to content

Commit e7fee9d

Browse files
committed
chore: Update DF/Ballista versions from 51 to 52, vortex spiceai-51 to spiceai-52
1 parent 9298d44 commit e7fee9d

9 files changed

Lines changed: 33 additions & 33 deletions

File tree

Cargo.toml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -35,11 +35,11 @@ arrow-flight = { version = "57", features = ["flight-sql-experimental"] }
3535
clap = { version = "4.5", features = ["derive", "cargo"] }
3636
configure_me = { version = "0.4.0" }
3737
configure_me_codegen = { version = "0.4.4" }
38-
datafusion = "51.0.0"
39-
datafusion-cli = "51.0.0"
40-
datafusion-proto = "51.0.0"
41-
datafusion-proto-common = "51.0.0"
42-
datafusion-substrait = "51.0.0"
38+
datafusion = "52.0.0"
39+
datafusion-cli = "52.0.0"
40+
datafusion-proto = "52.0.0"
41+
datafusion-proto-common = "52.0.0"
42+
datafusion-substrait = "52.0.0"
4343
object_store = { version = "0.12", features = ["aws", "azure"] }
4444
bytes = "1.5"
4545
prost = "0.14"
@@ -73,11 +73,11 @@ backoff = { version = "0.4" }
7373
url = { version = "2.5" }
7474

7575
# Vortex columnar format dependencies from spiceai fork
76-
vortex-array = { git = "https://github.com/spiceai/vortex", branch = "spiceai-51", default-features = false }
77-
vortex-buffer = { git = "https://github.com/spiceai/vortex", branch = "spiceai-51", default-features = false }
78-
vortex-dtype = { git = "https://github.com/spiceai/vortex", branch = "spiceai-51", default-features = false }
79-
vortex-error = { git = "https://github.com/spiceai/vortex", branch = "spiceai-51", default-features = false }
80-
vortex-ipc = { git = "https://github.com/spiceai/vortex", branch = "spiceai-51", default-features = false }
76+
vortex-array = { git = "https://github.com/spiceai/vortex", branch = "spiceai-52", default-features = false }
77+
vortex-buffer = { git = "https://github.com/spiceai/vortex", branch = "spiceai-52", default-features = false }
78+
vortex-dtype = { git = "https://github.com/spiceai/vortex", branch = "spiceai-52", default-features = false }
79+
vortex-error = { git = "https://github.com/spiceai/vortex", branch = "spiceai-52", default-features = false }
80+
vortex-ipc = { git = "https://github.com/spiceai/vortex", branch = "spiceai-52", default-features = false }
8181

8282
# cargo build --profile release-lto
8383
[profile.release-lto]

ballista-cli/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
[package]
1919
name = "ballista-cli"
2020
description = "Command Line Client for Ballista distributed query engine."
21-
version = "51.0.0"
21+
version = "52.0.0"
2222
authors = ["Apache DataFusion <dev@datafusion.apache.org>"]
2323
edition = { workspace = true }
2424
rust-version = { workspace = true }
@@ -29,7 +29,7 @@ repository = "https://github.com/apache/datafusion-ballista"
2929
readme = "README.md"
3030

3131
[dependencies]
32-
ballista = { path = "../ballista/client", version = "51.0.0", features = ["standalone"] }
32+
ballista = { path = "../ballista/client", version = "52.0.0", features = ["standalone"] }
3333
clap = { workspace = true, features = ["derive", "cargo"] }
3434
datafusion = { workspace = true }
3535
datafusion-cli = { workspace = true }

ballista/client/Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
name = "ballista"
2020
description = "Ballista Distributed Compute"
2121
license = "Apache-2.0"
22-
version = "51.0.0"
22+
version = "52.0.0"
2323
homepage = "https://datafusion.apache.org/ballista/"
2424
repository = "https://github.com/apache/datafusion-ballista"
2525
readme = "README.md"
@@ -29,9 +29,9 @@ rust-version = { workspace = true }
2929

3030
[dependencies]
3131
async-trait = { workspace = true }
32-
ballista-core = { path = "../core", version = "51.0.0" }
33-
ballista-executor = { path = "../executor", version = "51.0.0", optional = true }
34-
ballista-scheduler = { path = "../scheduler", version = "51.0.0", optional = true }
32+
ballista-core = { path = "../core", version = "52.0.0" }
33+
ballista-executor = { path = "../executor", version = "52.0.0", optional = true }
34+
ballista-scheduler = { path = "../scheduler", version = "52.0.0", optional = true }
3535
datafusion = { workspace = true }
3636
log = { workspace = true }
3737
object_store = { workspace = true }
@@ -41,8 +41,8 @@ tonic = { workspace = true }
4141
url = { workspace = true }
4242

4343
[dev-dependencies]
44-
ballista-executor = { path = "../executor", version = "51.0.0" }
45-
ballista-scheduler = { path = "../scheduler", version = "51.0.0" }
44+
ballista-executor = { path = "../executor", version = "52.0.0" }
45+
ballista-scheduler = { path = "../scheduler", version = "52.0.0" }
4646
ctor = { workspace = true }
4747
datafusion-proto = { workspace = true }
4848
env_logger = { workspace = true }

ballista/core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
name = "ballista-core"
2020
description = "Ballista Distributed Compute"
2121
license = "Apache-2.0"
22-
version = "51.0.0"
22+
version = "52.0.0"
2323
homepage = "https://datafusion.apache.org/ballista/"
2424
repository = "https://github.com/apache/datafusion-ballista"
2525
readme = "README.md"

ballista/executor/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
name = "ballista-executor"
2020
description = "Ballista Distributed Compute - Executor"
2121
license = "Apache-2.0"
22-
version = "51.0.0"
22+
version = "52.0.0"
2323
homepage = "https://datafusion.apache.org/ballista/"
2424
repository = "https://github.com/apache/datafusion-ballista"
2525
readme = "README.md"
@@ -44,7 +44,7 @@ async-trait = { workspace = true }
4444

4545
backoff = { workspace = true }
4646

47-
ballista-core = { path = "../core", version = "51.0.0" }
47+
ballista-core = { path = "../core", version = "52.0.0" }
4848
bytes = "1"
4949

5050
clap = { workspace = true, optional = true }

ballista/scheduler/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
name = "ballista-scheduler"
2020
description = "Ballista Distributed Compute - Scheduler"
2121
license = "Apache-2.0"
22-
version = "51.0.0"
22+
version = "52.0.0"
2323
homepage = "https://datafusion.apache.org/ballista/"
2424
repository = "https://github.com/apache/datafusion-ballista"
2525
readme = "README.md"
@@ -48,7 +48,7 @@ substrait = ["dep:datafusion-substrait"]
4848
arrow-flight = { workspace = true }
4949
async-trait = { workspace = true }
5050
axum = "0.8.4"
51-
ballista-core = { path = "../core", version = "51.0.0" }
51+
ballista-core = { path = "../core", version = "52.0.0" }
5252
clap = { workspace = true, optional = true }
5353
dashmap = { workspace = true }
5454
datafusion = { workspace = true }

benchmarks/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
[package]
1919
name = "ballista-benchmarks"
2020
description = "Ballista Benchmarks"
21-
version = "51.0.0"
21+
version = "52.0.0"
2222
edition = "2024"
2323
authors = ["Apache DataFusion <dev@datafusion.apache.org>"]
2424
homepage = "https://datafusion.apache.org/ballista/"
@@ -32,7 +32,7 @@ default = ["mimalloc"]
3232
snmalloc = ["snmalloc-rs"]
3333

3434
[dependencies]
35-
ballista = { path = "../ballista/client", version = "51.0.0" }
35+
ballista = { path = "../ballista/client", version = "52.0.0" }
3636
datafusion = { workspace = true }
3737
datafusion-proto = { workspace = true }
3838
env_logger = { workspace = true }
@@ -51,4 +51,4 @@ tokio = { version = "^1.44", features = [
5151
] }
5252

5353
[dev-dependencies]
54-
ballista-core = { path = "../ballista/core", version = "51.0.0" }
54+
ballista-core = { path = "../ballista/core", version = "52.0.0" }

examples/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
[package]
1919
name = "ballista-examples"
2020
description = "Ballista usage examples"
21-
version = "51.0.0"
21+
version = "52.0.0"
2222
homepage = "https://datafusion.apache.org/ballista/"
2323
repository = "https://github.com/apache/datafusion-ballista"
2424
authors = ["Apache DataFusion <dev@datafusion.apache.org>"]
@@ -36,10 +36,10 @@ required-features = ["ballista/standalone"]
3636
[dependencies]
3737

3838
[dev-dependencies]
39-
ballista = { path = "../ballista/client", version = "51.0.0" }
40-
ballista-core = { path = "../ballista/core", version = "51.0.0", default-features = false }
41-
ballista-executor = { path = "../ballista/executor", version = "51.0.0", default-features = false }
42-
ballista-scheduler = { path = "../ballista/scheduler", version = "51.0.0", default-features = false }
39+
ballista = { path = "../ballista/client", version = "52.0.0" }
40+
ballista-core = { path = "../ballista/core", version = "52.0.0", default-features = false }
41+
ballista-executor = { path = "../ballista/executor", version = "52.0.0", default-features = false }
42+
ballista-scheduler = { path = "../ballista/scheduler", version = "52.0.0", default-features = false }
4343
ctor = { workspace = true }
4444
datafusion = { workspace = true }
4545
env_logger = { workspace = true }

python/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,8 @@ ballista = { path = "../ballista/client" }
3535
ballista-core = { path = "../ballista/core" }
3636
ballista-executor = { path = "../ballista/executor" }
3737
ballista-scheduler = { path = "../ballista/scheduler" }
38-
datafusion = "51.0.0"
39-
datafusion-proto = "51.0.0"
38+
datafusion = "52.0.0"
39+
datafusion-proto = "52.0.0"
4040
datafusion-python = "50.1.0"
4141

4242
pyo3 = { version = "0.25", features = ["extension-module", "abi3", "abi3-py39"] }

0 commit comments

Comments
 (0)