Skip to content

Commit 6d00bd9

Browse files
authored
DataFusion 14.0.0 Release Prep (#4110)
* bump version * CHANGELOG
1 parent dd081d6 commit 6d00bd9

File tree

14 files changed

+379
-45
lines changed

14 files changed

+379
-45
lines changed

benchmarks/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
[package]
1919
name = "datafusion-benchmarks"
2020
description = "DataFusion Benchmarks"
21-
version = "13.0.0"
21+
version = "14.0.0"
2222
edition = "2021"
2323
authors = ["Apache Arrow <[email protected]>"]
2424
homepage = "https://github.com/apache/arrow-datafusion"

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 = "13.0.0"
21+
version = "14.0.0"
2222
authors = ["Apache Arrow <[email protected]>"]
2323
edition = "2021"
2424
keywords = [ "arrow", "datafusion", "query", "sql" ]
@@ -31,7 +31,7 @@ readme = "README.md"
3131
[dependencies]
3232
arrow = "26.0.0"
3333
clap = { version = "3", features = ["derive", "cargo"] }
34-
datafusion = { path = "../datafusion/core", version = "13.0.0" }
34+
datafusion = { path = "../datafusion/core", version = "14.0.0" }
3535
dirs = "4.0.0"
3636
env_logger = "0.9"
3737
mimalloc = { version = "0.1", default-features = false }

datafusion-examples/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
[package]
1919
name = "datafusion-examples"
2020
description = "DataFusion usage examples"
21-
version = "13.0.0"
21+
version = "14.0.0"
2222
homepage = "https://github.com/apache/arrow-datafusion"
2323
repository = "https://github.com/apache/arrow-datafusion"
2424
authors = ["Apache Arrow <[email protected]>"]

datafusion/CHANGELOG.md

Lines changed: 334 additions & 0 deletions
Large diffs are not rendered by default.

datafusion/common/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
[package]
1919
name = "datafusion-common"
2020
description = "Common functionality for DataFusion query engine"
21-
version = "13.0.0"
21+
version = "14.0.0"
2222
homepage = "https://github.com/apache/arrow-datafusion"
2323
repository = "https://github.com/apache/arrow-datafusion"
2424
readme = "README.md"

datafusion/core/Cargo.toml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
[package]
1919
name = "datafusion"
2020
description = "DataFusion is an in-memory query engine that uses Apache Arrow as the memory model"
21-
version = "13.0.0"
21+
version = "14.0.0"
2222
homepage = "https://github.com/apache/arrow-datafusion"
2323
repository = "https://github.com/apache/arrow-datafusion"
2424
readme = "../../README.md"
@@ -62,13 +62,13 @@ async-trait = "0.1.41"
6262
bytes = "1.1"
6363
bzip2 = "0.4.3"
6464
chrono = { version = "0.4.22", default-features = false }
65-
datafusion-common = { path = "../common", version = "13.0.0", features = ["parquet", "object_store"] }
66-
datafusion-expr = { path = "../expr", version = "13.0.0" }
67-
datafusion-jit = { path = "../jit", version = "13.0.0", optional = true }
68-
datafusion-optimizer = { path = "../optimizer", version = "13.0.0" }
69-
datafusion-physical-expr = { path = "../physical-expr", version = "13.0.0" }
70-
datafusion-row = { path = "../row", version = "13.0.0" }
71-
datafusion-sql = { path = "../sql", version = "13.0.0" }
65+
datafusion-common = { path = "../common", version = "14.0.0", features = ["parquet", "object_store"] }
66+
datafusion-expr = { path = "../expr", version = "14.0.0" }
67+
datafusion-jit = { path = "../jit", version = "14.0.0", optional = true }
68+
datafusion-optimizer = { path = "../optimizer", version = "14.0.0" }
69+
datafusion-physical-expr = { path = "../physical-expr", version = "14.0.0" }
70+
datafusion-row = { path = "../row", version = "14.0.0" }
71+
datafusion-sql = { path = "../sql", version = "14.0.0" }
7272
flate2 = "1.0.24"
7373
futures = "0.3"
7474
glob = "0.3.0"

datafusion/expr/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-expr"
2020
description = "Logical plan and expression representation for DataFusion query engine"
21-
version = "13.0.0"
21+
version = "14.0.0"
2222
homepage = "https://github.com/apache/arrow-datafusion"
2323
repository = "https://github.com/apache/arrow-datafusion"
2424
readme = "README.md"
@@ -37,6 +37,6 @@ path = "src/lib.rs"
3737
[dependencies]
3838
ahash = { version = "0.8", default-features = false, features = ["runtime-rng"] }
3939
arrow = { version = "26.0.0", default-features = false }
40-
datafusion-common = { path = "../common", version = "13.0.0" }
40+
datafusion-common = { path = "../common", version = "14.0.0" }
4141
log = "^0.4"
4242
sqlparser = "0.26"

datafusion/jit/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-jit"
2020
description = "Just In Time (JIT) compilation support for DataFusion query engine"
21-
version = "13.0.0"
21+
version = "14.0.0"
2222
homepage = "https://github.com/apache/arrow-datafusion"
2323
repository = "https://github.com/apache/arrow-datafusion"
2424
readme = "README.md"
@@ -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 = "13.0.0", features = ["jit"] }
45-
datafusion-expr = { path = "../expr", version = "13.0.0" }
44+
datafusion-common = { path = "../common", version = "14.0.0", features = ["jit"] }
45+
datafusion-expr = { path = "../expr", version = "14.0.0" }
4646

4747
parking_lot = "0.12"

datafusion/optimizer/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
[package]
1919
name = "datafusion-optimizer"
2020
description = "DataFusion Query Optimizer"
21-
version = "13.0.0"
21+
version = "14.0.0"
2222
homepage = "https://github.com/apache/arrow-datafusion"
2323
repository = "https://github.com/apache/arrow-datafusion"
2424
readme = "README.md"
@@ -40,13 +40,13 @@ unicode_expressions = []
4040
arrow = { version = "26.0.0", features = ["prettyprint"] }
4141
async-trait = "0.1.41"
4242
chrono = { version = "0.4.22", default-features = false }
43-
datafusion-common = { path = "../common", version = "13.0.0" }
44-
datafusion-expr = { path = "../expr", version = "13.0.0" }
45-
datafusion-physical-expr = { path = "../physical-expr", version = "13.0.0" }
43+
datafusion-common = { path = "../common", version = "14.0.0" }
44+
datafusion-expr = { path = "../expr", version = "14.0.0" }
45+
datafusion-physical-expr = { path = "../physical-expr", version = "14.0.0" }
4646
hashbrown = { version = "0.12", features = ["raw"] }
4747
log = "^0.4"
4848

4949
[dev-dependencies]
5050
ctor = "0.1.22"
51-
datafusion-sql = { path = "../sql", version = "13.0.0" }
51+
datafusion-sql = { path = "../sql", version = "14.0.0" }
5252
env_logger = "0.9.0"

datafusion/physical-expr/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
[package]
1919
name = "datafusion-physical-expr"
2020
description = "Physical expression implementation for DataFusion query engine"
21-
version = "13.0.0"
21+
version = "14.0.0"
2222
homepage = "https://github.com/apache/arrow-datafusion"
2323
repository = "https://github.com/apache/arrow-datafusion"
2424
readme = "README.md"
@@ -46,9 +46,9 @@ arrow-schema = "26.0.0"
4646
blake2 = { version = "^0.10.2", optional = true }
4747
blake3 = { version = "1.0", optional = true }
4848
chrono = { version = "0.4.22", default-features = false }
49-
datafusion-common = { path = "../common", version = "13.0.0" }
50-
datafusion-expr = { path = "../expr", version = "13.0.0" }
51-
datafusion-row = { path = "../row", version = "13.0.0" }
49+
datafusion-common = { path = "../common", version = "14.0.0" }
50+
datafusion-expr = { path = "../expr", version = "14.0.0" }
51+
datafusion-row = { path = "../row", version = "14.0.0" }
5252
half = { version = "2.1", default-features = false }
5353
hashbrown = { version = "0.12", features = ["raw"] }
5454
itertools = { version = "0.10", features = ["use_std"] }

datafusion/proto/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
[package]
1919
name = "datafusion-proto"
2020
description = "Protobuf serialization of DataFusion logical plan expressions"
21-
version = "13.0.0"
21+
version = "14.0.0"
2222
homepage = "https://github.com/apache/arrow-datafusion"
2323
repository = "https://github.com/apache/arrow-datafusion"
2424
readme = "README.md"
@@ -41,9 +41,9 @@ json = ["pbjson", "serde", "serde_json"]
4141

4242
[dependencies]
4343
arrow = "26.0.0"
44-
datafusion = { path = "../core", version = "13.0.0" }
45-
datafusion-common = { path = "../common", version = "13.0.0" }
46-
datafusion-expr = { path = "../expr", version = "13.0.0" }
44+
datafusion = { path = "../core", version = "14.0.0" }
45+
datafusion-common = { path = "../common", version = "14.0.0" }
46+
datafusion-expr = { path = "../expr", version = "14.0.0" }
4747
pbjson = { version = "0.5", optional = true }
4848
pbjson-types = { version = "0.5", optional = true }
4949
prost = "0.11.0"

datafusion/row/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-row"
2020
description = "Row backed by raw bytes for DataFusion query engine"
21-
version = "13.0.0"
21+
version = "14.0.0"
2222
homepage = "https://github.com/apache/arrow-datafusion"
2323
repository = "https://github.com/apache/arrow-datafusion"
2424
readme = "README.md"
@@ -38,7 +38,7 @@ jit = ["datafusion-jit"]
3838

3939
[dependencies]
4040
arrow = "26.0.0"
41-
datafusion-common = { path = "../common", version = "13.0.0" }
42-
datafusion-jit = { path = "../jit", version = "13.0.0", optional = true }
41+
datafusion-common = { path = "../common", version = "14.0.0" }
42+
datafusion-jit = { path = "../jit", version = "14.0.0", optional = true }
4343
paste = "^1.0"
4444
rand = "0.8"

datafusion/sql/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-sql"
2020
description = "DataFusion SQL Query Planner"
21-
version = "13.0.0"
21+
version = "14.0.0"
2222
homepage = "https://github.com/apache/arrow-datafusion"
2323
repository = "https://github.com/apache/arrow-datafusion"
2424
readme = "README.md"
@@ -38,6 +38,6 @@ unicode_expressions = []
3838

3939
[dependencies]
4040
arrow = { version = "26.0.0", default-features = false }
41-
datafusion-common = { path = "../common", version = "13.0.0" }
42-
datafusion-expr = { path = "../expr", version = "13.0.0" }
41+
datafusion-common = { path = "../common", version = "14.0.0" }
42+
datafusion-expr = { path = "../expr", version = "14.0.0" }
4343
sqlparser = "0.26"

0 commit comments

Comments
 (0)