Skip to content

Commit

Permalink
chore: release 43 (#1156)
Browse files Browse the repository at this point in the history
  • Loading branch information
milenkovicm authored Jan 7, 2025
1 parent 3a46669 commit caeef3e
Show file tree
Hide file tree
Showing 9 changed files with 159 additions and 39 deletions.
146 changes: 133 additions & 13 deletions CHANGELOG.md

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions ballista-cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
[package]
name = "ballista-cli"
description = "Command Line Client for Ballista distributed query engine."
version = "0.12.0"
version = "43.0.0"
authors = ["Apache DataFusion <[email protected]>"]
edition = "2021"
keywords = ["ballista", "cli"]
Expand All @@ -28,7 +28,7 @@ repository = "https://github.com/apache/arrow-ballista"
readme = "README.md"

[dependencies]
ballista = { path = "../ballista/client", version = "0.12.0", features = ["standalone"] }
ballista = { path = "../ballista/client", version = "43.0.0", features = ["standalone"] }
clap = { workspace = true, features = ["derive", "cargo"] }
datafusion = { workspace = true }
datafusion-cli = { workspace = true }
Expand Down
12 changes: 6 additions & 6 deletions ballista/client/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
name = "ballista"
description = "Ballista Distributed Compute"
license = "Apache-2.0"
version = "0.12.0"
version = "43.0.0"
homepage = "https://github.com/apache/arrow-ballista"
repository = "https://github.com/apache/arrow-ballista"
readme = "README.md"
Expand All @@ -28,18 +28,18 @@ edition = "2021"

[dependencies]
async-trait = { workspace = true }
ballista-core = { path = "../core", version = "0.12.0" }
ballista-executor = { path = "../executor", version = "0.12.0", optional = true }
ballista-scheduler = { path = "../scheduler", version = "0.12.0", optional = true }
ballista-core = { path = "../core", version = "43.0.0" }
ballista-executor = { path = "../executor", version = "43.0.0", optional = true }
ballista-scheduler = { path = "../scheduler", version = "43.0.0", optional = true }
datafusion = { workspace = true }
log = { workspace = true }

tokio = { workspace = true }
url = { workspace = true }

[dev-dependencies]
ballista-executor = { path = "../executor", version = "0.12.0" }
ballista-scheduler = { path = "../scheduler", version = "0.12.0" }
ballista-executor = { path = "../executor", version = "43.0.0" }
ballista-scheduler = { path = "../scheduler", version = "43.0.0" }
ctor = { workspace = true }
datafusion-proto = { workspace = true }
env_logger = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion ballista/core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
name = "ballista-core"
description = "Ballista Distributed Compute"
license = "Apache-2.0"
version = "0.12.0"
version = "43.0.0"
homepage = "https://github.com/apache/arrow-ballista"
repository = "https://github.com/apache/arrow-ballista"
readme = "README.md"
Expand Down
4 changes: 2 additions & 2 deletions ballista/executor/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
name = "ballista-executor"
description = "Ballista Distributed Compute - Executor"
license = "Apache-2.0"
version = "0.12.0"
version = "43.0.0"
homepage = "https://github.com/apache/arrow-ballista"
repository = "https://github.com/apache/arrow-ballista"
readme = "README.md"
Expand All @@ -42,7 +42,7 @@ default = ["build-binary", "mimalloc"]
arrow = { workspace = true }
arrow-flight = { workspace = true }
async-trait = { workspace = true }
ballista-core = { path = "../core", version = "0.12.0" }
ballista-core = { path = "../core", version = "43.0.0" }
configure_me = { workspace = true, optional = true }
dashmap = { workspace = true }
datafusion = { workspace = true }
Expand Down
4 changes: 2 additions & 2 deletions ballista/scheduler/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
name = "ballista-scheduler"
description = "Ballista Distributed Compute - Scheduler"
license = "Apache-2.0"
version = "0.12.0"
version = "43.0.0"
homepage = "https://github.com/apache/arrow-ballista"
repository = "https://github.com/apache/arrow-ballista"
readme = "README.md"
Expand All @@ -46,7 +46,7 @@ rest-api = []
arrow-flight = { workspace = true }
async-trait = { workspace = true }
axum = "0.7.7"
ballista-core = { path = "../core", version = "0.12.0" }
ballista-core = { path = "../core", version = "43.0.0" }
base64 = { version = "0.22", optional = true }
clap = { workspace = true, optional = true }
configure_me = { workspace = true, optional = true }
Expand Down
6 changes: 3 additions & 3 deletions benchmarks/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
[package]
name = "ballista-benchmarks"
description = "Ballista Benchmarks"
version = "0.12.0"
version = "43.0.0"
edition = "2021"
authors = ["Apache DataFusion <[email protected]>"]
homepage = "https://github.com/apache/arrow-ballista"
Expand All @@ -32,7 +32,7 @@ default = ["mimalloc"]
snmalloc = ["snmalloc-rs"]

[dependencies]
ballista = { path = "../ballista/client", version = "0.12.0" }
ballista = { path = "../ballista/client", version = "43.0.0" }
datafusion = { workspace = true }
datafusion-proto = { workspace = true }
env_logger = { workspace = true }
Expand All @@ -51,4 +51,4 @@ tokio = { version = "^1.0", features = [
] }

[dev-dependencies]
ballista-core = { path = "../ballista/core", version = "0.12.0" }
ballista-core = { path = "../ballista/core", version = "43.0.0" }
10 changes: 5 additions & 5 deletions examples/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
[package]
name = "ballista-examples"
description = "Ballista usage examples"
version = "0.12.0"
version = "43.0.0"
homepage = "https://github.com/apache/arrow-ballista"
repository = "https://github.com/apache/arrow-ballista"
authors = ["Apache DataFusion <[email protected]>"]
Expand All @@ -33,10 +33,10 @@ path = "examples/standalone-sql.rs"
required-features = ["ballista/standalone"]

[dependencies]
ballista = { path = "../ballista/client", version = "0.12.0" }
ballista-core = { path = "../ballista/core", version = "0.12.0" }
ballista-executor = { path = "../ballista/executor", version = "0.12.0", default-features = false }
ballista-scheduler = { path = "../ballista/scheduler", version = "0.12.0", default-features = false }
ballista = { path = "../ballista/client", version = "43.0.0" }
ballista-core = { path = "../ballista/core", version = "43.0.0" }
ballista-executor = { path = "../ballista/executor", version = "43.0.0", default-features = false }
ballista-scheduler = { path = "../ballista/scheduler", version = "43.0.0", default-features = false }
datafusion = { workspace = true }
env_logger = { workspace = true }
log = { workspace = true }
Expand Down
10 changes: 5 additions & 5 deletions python/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

[package]
name = "pyballista"
version = "0.12.0"
version = "43.0.0"
homepage = "https://github.com/apache/arrow-ballista"
repository = "https://github.com/apache/arrow-ballista"
authors = ["Apache DataFusion <[email protected]>"]
Expand All @@ -30,10 +30,10 @@ publish = false

[dependencies]
async-trait = "0.1.77"
ballista = { path = "../ballista/client", version = "0.12.0" }
ballista-core = { path = "../ballista/core", version = "0.12.0" }
ballista-executor = { path = "../ballista/executor", version = "0.12.0", default-features = false }
ballista-scheduler = { path = "../ballista/scheduler", version = "0.12.0", default-features = false }
ballista = { path = "../ballista/client", version = "43.0.0" }
ballista-core = { path = "../ballista/core", version = "43.0.0" }
ballista-executor = { path = "../ballista/executor", version = "43.0.0", default-features = false }
ballista-scheduler = { path = "../ballista/scheduler", version = "43.0.0", default-features = false }
datafusion = { version = "43", features = ["pyarrow", "avro"] }
datafusion-proto = { version = "43" }
datafusion-python = { version = "43" }
Expand Down

0 comments on commit caeef3e

Please sign in to comment.