Skip to content

Commit 95a02a2

Browse files
committed
update version
1 parent 886ae98 commit 95a02a2

File tree

13 files changed

+34
-34
lines changed

13 files changed

+34
-34
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ members = [
3636
]
3737

3838
[workspace.package]
39-
version = "19.0.0"
39+
version = "20.0.0"
4040
edition = "2021"
4141
readme = "README.md"
4242
authors = ["Apache Arrow <[email protected]>"]

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 = "datafusion-benchmarks"
2020
description = "DataFusion Benchmarks"
21-
version = "19.0.0"
21+
version = "20.0.0"
2222
edition = "2021"
2323
authors = ["Apache Arrow <[email protected]>"]
2424
homepage = "https://github.com/apache/arrow-datafusion"
@@ -34,7 +34,7 @@ snmalloc = ["snmalloc-rs"]
3434

3535
[dependencies]
3636
arrow = { workspace = true }
37-
datafusion = { path = "../datafusion/core", version = "19.0.0", features = ["scheduler"] }
37+
datafusion = { path = "../datafusion/core", version = "20.0.0", features = ["scheduler"] }
3838
env_logger = "0.10"
3939
futures = "0.3"
4040
mimalloc = { version = "0.1", optional = true, default-features = false }
@@ -51,4 +51,4 @@ test-utils = { path = "../test-utils/", version = "0.1.0" }
5151
tokio = { version = "^1.0", features = ["macros", "rt", "rt-multi-thread", "parking_lot"] }
5252

5353
[dev-dependencies]
54-
datafusion-proto = { path = "../datafusion/proto", version = "19.0.0" }
54+
datafusion-proto = { path = "../datafusion/proto", version = "20.0.0" }

datafusion-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 = "datafusion-cli"
2020
description = "Command Line Client for DataFusion query engine."
21-
version = "19.0.0"
21+
version = "20.0.0"
2222
authors = ["Apache Arrow <[email protected]>"]
2323
edition = "2021"
2424
keywords = ["arrow", "datafusion", "query", "sql"]
@@ -32,7 +32,7 @@ readme = "README.md"
3232
arrow = "34.0.0"
3333
async-trait = "0.1.41"
3434
clap = { version = "3", features = ["derive", "cargo"] }
35-
datafusion = { path = "../datafusion/core", version = "19.0.0" }
35+
datafusion = { path = "../datafusion/core", version = "20.0.0" }
3636
dirs = "4.0.0"
3737
env_logger = "0.9"
3838
mimalloc = { version = "0.1", default-features = false }

datafusion/core/Cargo.toml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -67,14 +67,14 @@ bytes = "1.4"
6767
bzip2 = { version = "0.4.3", optional = true }
6868
chrono = { version = "0.4.23", default-features = false }
6969
dashmap = "5.4.0"
70-
datafusion-common = { path = "../common", version = "19.0.0", features = ["parquet", "object_store"] }
71-
datafusion-execution = { path = "../execution", version = "19.0.0" }
72-
datafusion-expr = { path = "../expr", version = "19.0.0" }
73-
datafusion-jit = { path = "../jit", version = "19.0.0", optional = true }
74-
datafusion-optimizer = { path = "../optimizer", version = "19.0.0", default-features = false }
75-
datafusion-physical-expr = { path = "../physical-expr", version = "19.0.0", default-features = false }
76-
datafusion-row = { path = "../row", version = "19.0.0" }
77-
datafusion-sql = { path = "../sql", version = "19.0.0" }
70+
datafusion-common = { path = "../common", version = "20.0.0", features = ["parquet", "object_store"] }
71+
datafusion-execution = { path = "../execution", version = "20.0.0" }
72+
datafusion-expr = { path = "../expr", version = "20.0.0" }
73+
datafusion-jit = { path = "../jit", version = "20.0.0", optional = true }
74+
datafusion-optimizer = { path = "../optimizer", version = "20.0.0", default-features = false }
75+
datafusion-physical-expr = { path = "../physical-expr", version = "20.0.0", default-features = false }
76+
datafusion-row = { path = "../row", version = "20.0.0" }
77+
datafusion-sql = { path = "../sql", version = "20.0.0" }
7878
flate2 = { version = "1.0.24", optional = true }
7979
futures = "0.3"
8080
glob = "0.3.0"

datafusion/execution/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@ path = "src/lib.rs"
3434

3535
[dependencies]
3636
dashmap = "5.4.0"
37-
datafusion-common = { path = "../common", version = "19.0.0" }
38-
datafusion-expr = { path = "../expr", version = "19.0.0" }
37+
datafusion-common = { path = "../common", version = "20.0.0" }
38+
datafusion-expr = { path = "../expr", version = "20.0.0" }
3939
hashbrown = { version = "0.13", features = ["raw"] }
4040
log = "^0.4"
4141
object_store = "0.5.4"

datafusion/expr/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ path = "src/lib.rs"
3737
[dependencies]
3838
ahash = { version = "0.8", default-features = false, features = ["runtime-rng"] }
3939
arrow = { workspace = true, default-features = false }
40-
datafusion-common = { path = "../common", version = "19.0.0" }
40+
datafusion-common = { path = "../common", version = "20.0.0" }
4141
log = "^0.4"
4242
sqlparser = "0.32"
4343

datafusion/jit/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ cranelift = "0.89.0"
4141
cranelift-jit = "0.89.0"
4242
cranelift-module = "0.89.0"
4343
cranelift-native = "0.89.0"
44-
datafusion-common = { path = "../common", version = "19.0.0", features = ["jit"] }
45-
datafusion-expr = { path = "../expr", version = "19.0.0" }
44+
datafusion-common = { path = "../common", version = "20.0.0", features = ["jit"] }
45+
datafusion-expr = { path = "../expr", version = "20.0.0" }
4646

4747
parking_lot = "0.12"

datafusion/optimizer/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -43,15 +43,15 @@ unicode_expressions = ["datafusion-physical-expr/unicode_expressions"]
4343
arrow = { workspace = true }
4444
async-trait = "0.1.41"
4545
chrono = { version = "0.4.23", default-features = false }
46-
datafusion-common = { path = "../common", version = "19.0.0" }
47-
datafusion-expr = { path = "../expr", version = "19.0.0" }
48-
datafusion-physical-expr = { path = "../physical-expr", version = "19.0.0", default-features = false }
46+
datafusion-common = { path = "../common", version = "20.0.0" }
47+
datafusion-expr = { path = "../expr", version = "20.0.0" }
48+
datafusion-physical-expr = { path = "../physical-expr", version = "20.0.0", default-features = false }
4949
hashbrown = { version = "0.13", features = ["raw"] }
5050
itertools = "0.10"
5151
log = "^0.4"
5252
regex-syntax = "0.6.28"
5353

5454
[dev-dependencies]
5555
ctor = "0.1.22"
56-
datafusion-sql = { path = "../sql", version = "19.0.0" }
56+
datafusion-sql = { path = "../sql", version = "20.0.0" }
5757
env_logger = "0.10.0"

datafusion/physical-expr/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,9 +49,9 @@ arrow-schema = { workspace = true }
4949
blake2 = { version = "^0.10.2", optional = true }
5050
blake3 = { version = "1.0", optional = true }
5151
chrono = { version = "0.4.23", default-features = false }
52-
datafusion-common = { path = "../common", version = "19.0.0" }
53-
datafusion-expr = { path = "../expr", version = "19.0.0" }
54-
datafusion-row = { path = "../row", version = "19.0.0" }
52+
datafusion-common = { path = "../common", version = "20.0.0" }
53+
datafusion-expr = { path = "../expr", version = "20.0.0" }
54+
datafusion-row = { path = "../row", version = "20.0.0" }
5555
half = { version = "2.1", default-features = false }
5656
hashbrown = { version = "0.13", features = ["raw"] }
5757
indexmap = "1.9.2"

datafusion/proto/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,9 +42,9 @@ json = ["pbjson", "serde", "serde_json"]
4242
[dependencies]
4343
arrow = { workspace = true }
4444
chrono = { version = "0.4", default-features = false }
45-
datafusion = { path = "../core", version = "19.0.0" }
46-
datafusion-common = { path = "../common", version = "19.0.0" }
47-
datafusion-expr = { path = "../expr", version = "19.0.0" }
45+
datafusion = { path = "../core", version = "20.0.0" }
46+
datafusion-common = { path = "../common", version = "20.0.0" }
47+
datafusion-expr = { path = "../expr", version = "20.0.0" }
4848
object_store = { version = "0.5.4" }
4949
parking_lot = { version = "0.12" }
5050
pbjson = { version = "0.5", optional = true }

0 commit comments

Comments
 (0)