This is an automated email from the ASF dual-hosted git repository.

andygrove pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/datafusion-ballista.git


The following commit(s) were added to refs/heads/main by this push:
     new d54b48f36 chore: bump Ballista version to 54.0.0 (#2004)
d54b48f36 is described below

commit d54b48f360fde6666c2509cfd26809ea92ff8f20
Author: Andy Grove <[email protected]>
AuthorDate: Sun Jul 12 09:43:15 2026 -0600

    chore: bump Ballista version to 54.0.0 (#2004)
    
    * chore: bump Ballista version to 54.0.0
    
    * chore: update python/Cargo.lock for 54.0.0
---
 Cargo.lock                    | 14 +++++++-------
 ballista-cli/Cargo.toml       |  4 ++--
 ballista/client/Cargo.toml    | 12 ++++++------
 ballista/core/Cargo.toml      |  2 +-
 ballista/executor/Cargo.toml  |  4 ++--
 ballista/scheduler/Cargo.toml |  4 ++--
 benchmarks/Cargo.toml         |  6 +++---
 examples/Cargo.toml           | 10 +++++-----
 python/Cargo.lock             | 10 +++++-----
 python/Cargo.toml             | 10 +++++-----
 10 files changed, 38 insertions(+), 38 deletions(-)

diff --git a/Cargo.lock b/Cargo.lock
index b918eb711..43ea10577 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -1002,7 +1002,7 @@ dependencies = [
 
 [[package]]
 name = "ballista"
-version = "53.0.0"
+version = "54.0.0"
 dependencies = [
  "async-trait",
  "ballista-core",
@@ -1023,7 +1023,7 @@ dependencies = [
 
 [[package]]
 name = "ballista-benchmarks"
-version = "53.0.0"
+version = "54.0.0"
 dependencies = [
  "ballista",
  "ballista-core",
@@ -1044,7 +1044,7 @@ dependencies = [
 
 [[package]]
 name = "ballista-cli"
-version = "53.0.0"
+version = "54.0.0"
 dependencies = [
  "ballista",
  "chrono",
@@ -1083,7 +1083,7 @@ dependencies = [
 
 [[package]]
 name = "ballista-core"
-version = "53.0.0"
+version = "54.0.0"
 dependencies = [
  "arrow-flight",
  "async-trait",
@@ -1119,7 +1119,7 @@ dependencies = [
 
 [[package]]
 name = "ballista-examples"
-version = "53.0.0"
+version = "54.0.0"
 dependencies = [
  "arrow-flight",
  "ballista",
@@ -1145,7 +1145,7 @@ dependencies = [
 
 [[package]]
 name = "ballista-executor"
-version = "53.0.0"
+version = "54.0.0"
 dependencies = [
  "arrow",
  "arrow-flight",
@@ -1178,7 +1178,7 @@ dependencies = [
 
 [[package]]
 name = "ballista-scheduler"
-version = "53.0.0"
+version = "54.0.0"
 dependencies = [
  "arrow-flight",
  "async-trait",
diff --git a/ballista-cli/Cargo.toml b/ballista-cli/Cargo.toml
index 683a3c245..e9aaa9863 100644
--- a/ballista-cli/Cargo.toml
+++ b/ballista-cli/Cargo.toml
@@ -18,7 +18,7 @@
 [package]
 name = "ballista-cli"
 description = "Command Line Client for Ballista distributed query engine."
-version = "53.0.0"
+version = "54.0.0"
 authors = ["Apache DataFusion <[email protected]>"]
 edition = { workspace = true }
 rust-version = { workspace = true }
@@ -33,7 +33,7 @@ crate-type = ["cdylib", "rlib"]
 
 [dependencies]
 # CLI-only deps (DataFusion/Ballista) — gated by `cli` feature
-ballista = { path = "../ballista/client", version = "53.0.0", features = 
["standalone"], optional = true }
+ballista = { path = "../ballista/client", version = "54.0.0", features = 
["standalone"], optional = true }
 datafusion = { workspace = true, optional = true }
 datafusion-cli = { workspace = true, optional = true }
 rustyline = { version = "18.0.0", optional = true }
diff --git a/ballista/client/Cargo.toml b/ballista/client/Cargo.toml
index f3d9d2e3e..062b3435d 100644
--- a/ballista/client/Cargo.toml
+++ b/ballista/client/Cargo.toml
@@ -19,7 +19,7 @@
 name = "ballista"
 description = "Ballista Distributed Compute"
 license = "Apache-2.0"
-version = "53.0.0"
+version = "54.0.0"
 homepage = "https://datafusion.apache.org/ballista/";
 repository = "https://github.com/apache/datafusion-ballista";
 readme = "README.md"
@@ -29,9 +29,9 @@ rust-version = { workspace = true }
 
 [dependencies]
 async-trait = { workspace = true }
-ballista-core = { path = "../core", version = "53.0.0" }
-ballista-executor = { path = "../executor", version = "53.0.0", optional = 
true, default-features = false, features = ["arrow-ipc-optimizations"] }
-ballista-scheduler = { path = "../scheduler", version = "53.0.0", optional = 
true, default-features = false }
+ballista-core = { path = "../core", version = "54.0.0" }
+ballista-executor = { path = "../executor", version = "54.0.0", optional = 
true, default-features = false, features = ["arrow-ipc-optimizations"] }
+ballista-scheduler = { path = "../scheduler", version = "54.0.0", optional = 
true, default-features = false }
 datafusion = { workspace = true }
 log = { workspace = true }
 
@@ -39,8 +39,8 @@ tokio = { workspace = true }
 url = { workspace = true }
 
 [dev-dependencies]
-ballista-executor = { path = "../executor", version = "53.0.0" }
-ballista-scheduler = { path = "../scheduler", version = "53.0.0" }
+ballista-executor = { path = "../executor", version = "54.0.0" }
+ballista-scheduler = { path = "../scheduler", version = "54.0.0" }
 ctor = { workspace = true }
 datafusion-proto = { workspace = true }
 env_logger = { workspace = true }
diff --git a/ballista/core/Cargo.toml b/ballista/core/Cargo.toml
index 914c1eed3..735918390 100644
--- a/ballista/core/Cargo.toml
+++ b/ballista/core/Cargo.toml
@@ -19,7 +19,7 @@
 name = "ballista-core"
 description = "Ballista Distributed Compute"
 license = "Apache-2.0"
-version = "53.0.0"
+version = "54.0.0"
 homepage = "https://datafusion.apache.org/ballista/";
 repository = "https://github.com/apache/datafusion-ballista";
 readme = "README.md"
diff --git a/ballista/executor/Cargo.toml b/ballista/executor/Cargo.toml
index aa60cb2fd..caae3b426 100644
--- a/ballista/executor/Cargo.toml
+++ b/ballista/executor/Cargo.toml
@@ -19,7 +19,7 @@
 name = "ballista-executor"
 description = "Ballista Distributed Compute - Executor"
 license = "Apache-2.0"
-version = "53.0.0"
+version = "54.0.0"
 homepage = "https://datafusion.apache.org/ballista/";
 repository = "https://github.com/apache/datafusion-ballista";
 readme = "README.md"
@@ -42,7 +42,7 @@ spark-compat = ["ballista-core/spark-compat"]
 arrow = { workspace = true }
 arrow-flight = { workspace = true }
 async-trait = { workspace = true }
-ballista-core = { path = "../core", version = "53.0.0" }
+ballista-core = { path = "../core", version = "54.0.0" }
 bytesize = "2"
 clap = { workspace = true, optional = true }
 dashmap = { workspace = true }
diff --git a/ballista/scheduler/Cargo.toml b/ballista/scheduler/Cargo.toml
index 92339a5c5..d2012b346 100644
--- a/ballista/scheduler/Cargo.toml
+++ b/ballista/scheduler/Cargo.toml
@@ -19,7 +19,7 @@
 name = "ballista-scheduler"
 description = "Ballista Distributed Compute - Scheduler"
 license = "Apache-2.0"
-version = "53.0.0"
+version = "54.0.0"
 homepage = "https://datafusion.apache.org/ballista/";
 repository = "https://github.com/apache/datafusion-ballista";
 readme = "README.md"
@@ -50,7 +50,7 @@ arrow-flight = { workspace = true }
 async-trait = { workspace = true }
 axum = "0.8.9"
 tower-http = { version = "0.7", features = ["cors"] }
-ballista-core = { path = "../core", version = "53.0.0" }
+ballista-core = { path = "../core", version = "54.0.0" }
 clap = { workspace = true, optional = true }
 dashmap = { workspace = true }
 datafusion = { workspace = true }
diff --git a/benchmarks/Cargo.toml b/benchmarks/Cargo.toml
index ab969b477..c107aaee5 100644
--- a/benchmarks/Cargo.toml
+++ b/benchmarks/Cargo.toml
@@ -18,7 +18,7 @@
 [package]
 name = "ballista-benchmarks"
 description = "Ballista Benchmarks"
-version = "53.0.0"
+version = "54.0.0"
 edition = "2024"
 authors = ["Apache DataFusion <[email protected]>"]
 homepage = "https://datafusion.apache.org/ballista/";
@@ -31,8 +31,8 @@ ci = []
 default = ["mimalloc"]
 
 [dependencies]
-ballista = { path = "../ballista/client", version = "53.0.0" }
-ballista-core = { path = "../ballista/core", version = "53.0.0", features = [
+ballista = { path = "../ballista/client", version = "54.0.0" }
+ballista-core = { path = "../ballista/core", version = "54.0.0", features = [
     "build-binary",
 ] }
 clap = { workspace = true }
diff --git a/examples/Cargo.toml b/examples/Cargo.toml
index 2f6e55451..531ce3656 100644
--- a/examples/Cargo.toml
+++ b/examples/Cargo.toml
@@ -18,7 +18,7 @@
 [package]
 name = "ballista-examples"
 description = "Ballista usage examples"
-version = "53.0.0"
+version = "54.0.0"
 homepage = "https://datafusion.apache.org/ballista/";
 repository = "https://github.com/apache/datafusion-ballista";
 authors = ["Apache DataFusion <[email protected]>"]
@@ -57,10 +57,10 @@ rustls = { version = "0.23", features = ["ring"], optional 
= true }
 
 [dev-dependencies]
 arrow-flight = { workspace = true }
-ballista = { path = "../ballista/client", version = "53.0.0" }
-ballista-core = { path = "../ballista/core", version = "53.0.0", 
default-features = false, features = ["build-binary"] }
-ballista-executor = { path = "../ballista/executor", version = "53.0.0", 
default-features = false }
-ballista-scheduler = { path = "../ballista/scheduler", version = "53.0.0", 
default-features = false }
+ballista = { path = "../ballista/client", version = "54.0.0" }
+ballista-core = { path = "../ballista/core", version = "54.0.0", 
default-features = false, features = ["build-binary"] }
+ballista-executor = { path = "../ballista/executor", version = "54.0.0", 
default-features = false }
+ballista-scheduler = { path = "../ballista/scheduler", version = "54.0.0", 
default-features = false }
 ctor = { workspace = true }
 datafusion = { workspace = true }
 datafusion-proto = { workspace = true }
diff --git a/python/Cargo.lock b/python/Cargo.lock
index e7d0ef3c9..64c9566c7 100644
--- a/python/Cargo.lock
+++ b/python/Cargo.lock
@@ -491,7 +491,7 @@ dependencies = [
 
 [[package]]
 name = "ballista"
-version = "53.0.0"
+version = "54.0.0"
 dependencies = [
  "async-trait",
  "ballista-core",
@@ -505,7 +505,7 @@ dependencies = [
 
 [[package]]
 name = "ballista-core"
-version = "53.0.0"
+version = "54.0.0"
 dependencies = [
  "arrow-flight",
  "async-trait",
@@ -535,7 +535,7 @@ dependencies = [
 
 [[package]]
 name = "ballista-executor"
-version = "53.0.0"
+version = "54.0.0"
 dependencies = [
  "arrow",
  "arrow-flight",
@@ -563,7 +563,7 @@ dependencies = [
 
 [[package]]
 name = "ballista-scheduler"
-version = "53.0.0"
+version = "54.0.0"
 dependencies = [
  "arrow-flight",
  "async-trait",
@@ -3123,7 +3123,7 @@ dependencies = [
 
 [[package]]
 name = "pyballista"
-version = "53.0.0"
+version = "54.0.0"
 dependencies = [
  "async-trait",
  "ballista",
diff --git a/python/Cargo.toml b/python/Cargo.toml
index 47b3f9d39..97a2bead2 100644
--- a/python/Cargo.toml
+++ b/python/Cargo.toml
@@ -17,7 +17,7 @@
 
 [package]
 name = "pyballista"
-version = "53.0.0"
+version = "54.0.0"
 homepage = "https://datafusion.apache.org/ballista/";
 repository = "https://github.com/apache/datafusion-ballista";
 authors = ["Apache DataFusion <[email protected]>"]
@@ -31,10 +31,10 @@ publish = false
 
 [dependencies]
 async-trait = "0.1.89"
-ballista = { path = "../ballista/client", version = "53.0.0" }
-ballista-core = { path = "../ballista/core", version = "53.0.0" }
-ballista-executor = { path = "../ballista/executor", version = "53.0.0", 
default-features = false }
-ballista-scheduler = { path = "../ballista/scheduler", version = "53.0.0", 
default-features = false }
+ballista = { path = "../ballista/client", version = "54.0.0" }
+ballista-core = { path = "../ballista/core", version = "54.0.0" }
+ballista-executor = { path = "../ballista/executor", version = "54.0.0", 
default-features = false }
+ballista-scheduler = { path = "../ballista/scheduler", version = "54.0.0", 
default-features = false }
 datafusion = { version = "54", features = ["avro"] }
 datafusion-proto = { version = "54" }
 datafusion-python = { version = "54", default-features = false }


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to