Skip to content

Commit caeef3e

Browse files
authored
chore: release 43 (#1156)
1 parent 3a46669 commit caeef3e

File tree

9 files changed

+159
-39
lines changed

9 files changed

+159
-39
lines changed

CHANGELOG.md

Lines changed: 133 additions & 13 deletions
Large diffs are not rendered by default.

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 = "0.12.0"
21+
version = "43.0.0"
2222
authors = ["Apache DataFusion <[email protected]>"]
2323
edition = "2021"
2424
keywords = ["ballista", "cli"]
@@ -28,7 +28,7 @@ repository = "https://github.com/apache/arrow-ballista"
2828
readme = "README.md"
2929

3030
[dependencies]
31-
ballista = { path = "../ballista/client", version = "0.12.0", features = ["standalone"] }
31+
ballista = { path = "../ballista/client", version = "43.0.0", features = ["standalone"] }
3232
clap = { workspace = true, features = ["derive", "cargo"] }
3333
datafusion = { workspace = true }
3434
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 = "0.12.0"
22+
version = "43.0.0"
2323
homepage = "https://github.com/apache/arrow-ballista"
2424
repository = "https://github.com/apache/arrow-ballista"
2525
readme = "README.md"
@@ -28,18 +28,18 @@ edition = "2021"
2828

2929
[dependencies]
3030
async-trait = { workspace = true }
31-
ballista-core = { path = "../core", version = "0.12.0" }
32-
ballista-executor = { path = "../executor", version = "0.12.0", optional = true }
33-
ballista-scheduler = { path = "../scheduler", version = "0.12.0", optional = true }
31+
ballista-core = { path = "../core", version = "43.0.0" }
32+
ballista-executor = { path = "../executor", version = "43.0.0", optional = true }
33+
ballista-scheduler = { path = "../scheduler", version = "43.0.0", optional = true }
3434
datafusion = { workspace = true }
3535
log = { workspace = true }
3636

3737
tokio = { workspace = true }
3838
url = { workspace = true }
3939

4040
[dev-dependencies]
41-
ballista-executor = { path = "../executor", version = "0.12.0" }
42-
ballista-scheduler = { path = "../scheduler", version = "0.12.0" }
41+
ballista-executor = { path = "../executor", version = "43.0.0" }
42+
ballista-scheduler = { path = "../scheduler", version = "43.0.0" }
4343
ctor = { workspace = true }
4444
datafusion-proto = { workspace = true }
4545
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 = "0.12.0"
22+
version = "43.0.0"
2323
homepage = "https://github.com/apache/arrow-ballista"
2424
repository = "https://github.com/apache/arrow-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 = "0.12.0"
22+
version = "43.0.0"
2323
homepage = "https://github.com/apache/arrow-ballista"
2424
repository = "https://github.com/apache/arrow-ballista"
2525
readme = "README.md"
@@ -42,7 +42,7 @@ default = ["build-binary", "mimalloc"]
4242
arrow = { workspace = true }
4343
arrow-flight = { workspace = true }
4444
async-trait = { workspace = true }
45-
ballista-core = { path = "../core", version = "0.12.0" }
45+
ballista-core = { path = "../core", version = "43.0.0" }
4646
configure_me = { workspace = true, optional = true }
4747
dashmap = { workspace = true }
4848
datafusion = { workspace = 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 = "0.12.0"
22+
version = "43.0.0"
2323
homepage = "https://github.com/apache/arrow-ballista"
2424
repository = "https://github.com/apache/arrow-ballista"
2525
readme = "README.md"
@@ -46,7 +46,7 @@ rest-api = []
4646
arrow-flight = { workspace = true }
4747
async-trait = { workspace = true }
4848
axum = "0.7.7"
49-
ballista-core = { path = "../core", version = "0.12.0" }
49+
ballista-core = { path = "../core", version = "43.0.0" }
5050
base64 = { version = "0.22", optional = true }
5151
clap = { workspace = true, optional = true }
5252
configure_me = { workspace = true, optional = 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 = "0.12.0"
21+
version = "43.0.0"
2222
edition = "2021"
2323
authors = ["Apache DataFusion <[email protected]>"]
2424
homepage = "https://github.com/apache/arrow-ballista"
@@ -32,7 +32,7 @@ default = ["mimalloc"]
3232
snmalloc = ["snmalloc-rs"]
3333

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

5353
[dev-dependencies]
54-
ballista-core = { path = "../ballista/core", version = "0.12.0" }
54+
ballista-core = { path = "../ballista/core", version = "43.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 = "0.12.0"
21+
version = "43.0.0"
2222
homepage = "https://github.com/apache/arrow-ballista"
2323
repository = "https://github.com/apache/arrow-ballista"
2424
authors = ["Apache DataFusion <[email protected]>"]
@@ -33,10 +33,10 @@ path = "examples/standalone-sql.rs"
3333
required-features = ["ballista/standalone"]
3434

3535
[dependencies]
36-
ballista = { path = "../ballista/client", version = "0.12.0" }
37-
ballista-core = { path = "../ballista/core", version = "0.12.0" }
38-
ballista-executor = { path = "../ballista/executor", version = "0.12.0", default-features = false }
39-
ballista-scheduler = { path = "../ballista/scheduler", version = "0.12.0", default-features = false }
36+
ballista = { path = "../ballista/client", version = "43.0.0" }
37+
ballista-core = { path = "../ballista/core", version = "43.0.0" }
38+
ballista-executor = { path = "../ballista/executor", version = "43.0.0", default-features = false }
39+
ballista-scheduler = { path = "../ballista/scheduler", version = "43.0.0", default-features = false }
4040
datafusion = { workspace = true }
4141
env_logger = { workspace = true }
4242
log = { workspace = true }

python/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

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

3131
[dependencies]
3232
async-trait = "0.1.77"
33-
ballista = { path = "../ballista/client", version = "0.12.0" }
34-
ballista-core = { path = "../ballista/core", version = "0.12.0" }
35-
ballista-executor = { path = "../ballista/executor", version = "0.12.0", default-features = false }
36-
ballista-scheduler = { path = "../ballista/scheduler", version = "0.12.0", default-features = false }
33+
ballista = { path = "../ballista/client", version = "43.0.0" }
34+
ballista-core = { path = "../ballista/core", version = "43.0.0" }
35+
ballista-executor = { path = "../ballista/executor", version = "43.0.0", default-features = false }
36+
ballista-scheduler = { path = "../ballista/scheduler", version = "43.0.0", default-features = false }
3737
datafusion = { version = "43", features = ["pyarrow", "avro"] }
3838
datafusion-proto = { version = "43" }
3939
datafusion-python = { version = "43" }

0 commit comments

Comments
 (0)