Skip to content

Commit 11e711e

Browse files
authored
Prepare 28.0.0 Release (#7056)
* update version * changelog * cargo update * prettier
1 parent 72b8d51 commit 11e711e

File tree

15 files changed

+230
-36
lines changed

15 files changed

+230
-36
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 <dev@arrow.apache.org>"]
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.lock

Lines changed: 8 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

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 <dev@arrow.apache.org>"]
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/CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919

2020
# Changelog
2121

22+
- [28.0.0](../dev/changelog/28.0.0.md)
2223
- [27.0.0](../dev/changelog/27.0.0.md)
2324
- [26.0.0](../dev/changelog/26.0.0.md)
2425
- [25.0.0](../dev/changelog/25.0.0.md)

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 }

0 commit comments

Comments
 (0)