Skip to content

Commit 54f667e

Browse files
committed
update version
1 parent 77fafb9 commit 54f667e

File tree

12 files changed

+27
-28
lines changed

12 files changed

+27
-28
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ license = "Apache-2.0"
2929
readme = "README.md"
3030
repository = "https://github.com/apache/arrow-datafusion"
3131
rust-version = "1.64"
32-
version = "27.0.0"
32+
version = "28.0.0"
3333

3434
[workspace.dependencies]
3535
arrow = { version = "43.0.0", features = ["prettyprint", "dyn_cmp_dict"] }

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 = "27.0.0"
21+
version = "28.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 = "27.0.0" }
37+
datafusion = { path = "../datafusion/core", version = "28.0.0" }
3838
env_logger = "0.10"
3939
futures = "0.3"
4040
log = "^0.4"
@@ -49,4 +49,4 @@ test-utils = { path = "../test-utils/", version = "0.1.0" }
4949
tokio = { version = "^1.0", features = ["macros", "rt", "rt-multi-thread", "parking_lot"] }
5050

5151
[dev-dependencies]
52-
datafusion-proto = { path = "../datafusion/proto", version = "27.0.0" }
52+
datafusion-proto = { path = "../datafusion/proto", version = "28.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 = "27.0.0"
21+
version = "28.0.0"
2222
authors = ["Apache Arrow <[email protected]>"]
2323
edition = "2021"
2424
keywords = ["arrow", "datafusion", "query", "sql"]
@@ -34,7 +34,7 @@ async-trait = "0.1.41"
3434
aws-config = "0.55"
3535
aws-credential-types = "0.55"
3636
clap = { version = "3", features = ["derive", "cargo"] }
37-
datafusion = { path = "../datafusion/core", version = "27.0.0" }
37+
datafusion = { path = "../datafusion/core", version = "28.0.0" }
3838
dirs = "4.0.0"
3939
env_logger = "0.9"
4040
mimalloc = { version = "0.1", default-features = false }

datafusion/core/Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -62,12 +62,12 @@ bytes = "1.4"
6262
bzip2 = { version = "0.4.3", optional = true }
6363
chrono = { version = "0.4.23", default-features = false }
6464
dashmap = "5.4.0"
65-
datafusion-common = { path = "../common", version = "27.0.0", features = ["parquet", "object_store"] }
66-
datafusion-execution = { path = "../execution", version = "27.0.0" }
67-
datafusion-expr = { path = "../expr", version = "27.0.0" }
68-
datafusion-optimizer = { path = "../optimizer", version = "27.0.0", default-features = false }
69-
datafusion-physical-expr = { path = "../physical-expr", version = "27.0.0", default-features = false }
70-
datafusion-sql = { path = "../sql", version = "27.0.0" }
65+
datafusion-common = { path = "../common", version = "28.0.0", features = ["parquet", "object_store"] }
66+
datafusion-execution = { path = "../execution", version = "28.0.0" }
67+
datafusion-expr = { path = "../expr", version = "28.0.0" }
68+
datafusion-optimizer = { path = "../optimizer", version = "28.0.0", default-features = false }
69+
datafusion-physical-expr = { path = "../physical-expr", version = "28.0.0", default-features = false }
70+
datafusion-sql = { path = "../sql", version = "28.0.0" }
7171
flate2 = { version = "1.0.24", optional = true }
7272
futures = "0.3"
7373
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 = "27.0.0" }
38-
datafusion-expr = { path = "../expr", version = "27.0.0" }
37+
datafusion-common = { path = "../common", version = "28.0.0" }
38+
datafusion-expr = { path = "../expr", version = "28.0.0" }
3939
hashbrown = { version = "0.14", features = ["raw"] }
4040
log = "^0.4"
4141
object_store = "0.6.1"

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 }
40-
datafusion-common = { path = "../common", version = "27.0.0" }
40+
datafusion-common = { path = "../common", version = "28.0.0" }
4141
lazy_static = { version = "^1.4.0" }
4242
sqlparser = { workspace = true }
4343
strum = { version = "0.25.0", features = ["derive"] }

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 = "27.0.0" }
47-
datafusion-expr = { path = "../expr", version = "27.0.0" }
48-
datafusion-physical-expr = { path = "../physical-expr", version = "27.0.0", default-features = false }
46+
datafusion-common = { path = "../common", version = "28.0.0" }
47+
datafusion-expr = { path = "../expr", version = "28.0.0" }
48+
datafusion-physical-expr = { path = "../physical-expr", version = "28.0.0", default-features = false }
4949
hashbrown = { version = "0.14", features = ["raw"] }
5050
itertools = "0.11"
5151
log = "^0.4"
5252
regex-syntax = "0.7.1"
5353

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

datafusion/physical-expr/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,8 @@ base64 = { version = "0.21", optional = true }
5252
blake2 = { version = "^0.10.2", optional = true }
5353
blake3 = { version = "1.0", optional = true }
5454
chrono = { version = "0.4.23", default-features = false }
55-
datafusion-common = { path = "../common", version = "27.0.0" }
56-
datafusion-expr = { path = "../expr", version = "27.0.0" }
55+
datafusion-common = { path = "../common", version = "28.0.0" }
56+
datafusion-expr = { path = "../expr", version = "28.0.0" }
5757
half = { version = "2.1", default-features = false }
5858
hashbrown = { version = "0.14", features = ["raw"] }
5959
hex = { version = "0.4", optional = true }

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 = "27.0.0" }
46-
datafusion-common = { path = "../common", version = "27.0.0" }
47-
datafusion-expr = { path = "../expr", version = "27.0.0" }
45+
datafusion = { path = "../core", version = "28.0.0" }
46+
datafusion-common = { path = "../common", version = "28.0.0" }
47+
datafusion-expr = { path = "../expr", version = "28.0.0" }
4848
object_store = { version = "0.6.1" }
4949
pbjson = { version = "0.5", optional = true }
5050
prost = "0.11.0"

datafusion/sql/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,8 @@ unicode_expressions = []
3939
[dependencies]
4040
arrow = { workspace = true }
4141
arrow-schema = { workspace = true }
42-
datafusion-common = { path = "../common", version = "27.0.0" }
43-
datafusion-expr = { path = "../expr", version = "27.0.0" }
42+
datafusion-common = { path = "../common", version = "28.0.0" }
43+
datafusion-expr = { path = "../expr", version = "28.0.0" }
4444
log = "^0.4"
4545
sqlparser = { workspace = true }
4646

datafusion/substrait/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ rust-version = { workspace = true }
3030
[dependencies]
3131
async-recursion = "1.0"
3232
chrono = { version = "0.4.23", default-features = false }
33-
datafusion = { version = "27.0.0", path = "../core" }
33+
datafusion = { version = "28.0.0", path = "../core" }
3434
itertools = "0.11"
3535
object_store = "0.6.1"
3636
prost = "0.11"

dev/update_datafusion_versions.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,6 @@
3636
'datafusion-optimizer': 'datafusion/optimizer/Cargo.toml',
3737
'datafusion-physical-expr': 'datafusion/physical-expr/Cargo.toml',
3838
'datafusion-proto': 'datafusion/proto/Cargo.toml',
39-
'datafusion-row': 'datafusion/row/Cargo.toml',
4039
'datafusion-substrait': 'datafusion/substrait/Cargo.toml',
4140
'datafusion-sql': 'datafusion/sql/Cargo.toml',
4241
'datafusion-benchmarks': 'benchmarks/Cargo.toml',

0 commit comments

Comments
 (0)