Skip to content

Commit

Permalink
Release 17.0.0 (#5073)
Browse files Browse the repository at this point in the history
* update versions

* substrait fix

* cli lock file

* change log
  • Loading branch information
andygrove authored Jan 26, 2023
1 parent 8b716d3 commit bc9b78d
Show file tree
Hide file tree
Showing 18 changed files with 221 additions and 59 deletions.
6 changes: 3 additions & 3 deletions benchmarks/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
[package]
name = "datafusion-benchmarks"
description = "DataFusion Benchmarks"
version = "16.0.0"
version = "17.0.0"
edition = "2021"
authors = ["Apache Arrow <dev@arrow.apache.org>"]
homepage = "https://github.com/apache/arrow-datafusion"
Expand All @@ -34,7 +34,7 @@ snmalloc = ["snmalloc-rs"]

[dependencies]
arrow = "31.0.0"
datafusion = { path = "../datafusion/core", version = "16.0.0", features = ["scheduler"] }
datafusion = { path = "../datafusion/core", version = "17.0.0", features = ["scheduler"] }
env_logger = "0.10"
futures = "0.3"
mimalloc = { version = "0.1", optional = true, default-features = false }
Expand All @@ -51,4 +51,4 @@ test-utils = { path = "../test-utils/", version = "0.1.0" }
tokio = { version = "^1.0", features = ["macros", "rt", "rt-multi-thread", "parking_lot"] }

[dev-dependencies]
datafusion-proto = { path = "../datafusion/proto", version = "16.0.0" }
datafusion-proto = { path = "../datafusion/proto", version = "17.0.0" }
16 changes: 8 additions & 8 deletions datafusion-cli/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions datafusion-cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
[package]
name = "datafusion-cli"
description = "Command Line Client for DataFusion query engine."
version = "16.0.0"
version = "17.0.0"
authors = ["Apache Arrow <dev@arrow.apache.org>"]
edition = "2021"
keywords = [ "arrow", "datafusion", "query", "sql" ]
Expand All @@ -32,7 +32,7 @@ readme = "README.md"
arrow = "31.0.0"
async-trait = "0.1.41"
clap = { version = "3", features = ["derive", "cargo"] }
datafusion = { path = "../datafusion/core", version = "16.0.0" }
datafusion = { path = "../datafusion/core", version = "17.0.0" }
dirs = "4.0.0"
env_logger = "0.9"
mimalloc = { version = "0.1", default-features = false }
Expand Down
2 changes: 1 addition & 1 deletion datafusion-examples/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
[package]
name = "datafusion-examples"
description = "DataFusion usage examples"
version = "16.0.0"
version = "17.0.0"
homepage = "https://github.com/apache/arrow-datafusion"
repository = "https://github.com/apache/arrow-datafusion"
authors = ["Apache Arrow <dev@arrow.apache.org>"]
Expand Down
147 changes: 147 additions & 0 deletions datafusion/CHANGELOG.md

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion datafusion/common/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
[package]
name = "datafusion-common"
description = "Common functionality for DataFusion query engine"
version = "16.0.0"
version = "17.0.0"
homepage = "https://github.com/apache/arrow-datafusion"
repository = "https://github.com/apache/arrow-datafusion"
readme = "README.md"
Expand Down
16 changes: 8 additions & 8 deletions datafusion/core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
[package]
name = "datafusion"
description = "DataFusion is an in-memory query engine that uses Apache Arrow as the memory model"
version = "16.0.0"
version = "17.0.0"
homepage = "https://github.com/apache/arrow-datafusion"
repository = "https://github.com/apache/arrow-datafusion"
readme = "../../README.md"
Expand Down Expand Up @@ -67,13 +67,13 @@ bytes = "1.1"
bzip2 = { version = "0.4.3", optional = true }
chrono = { version = "0.4.23", default-features = false }
dashmap = "5.4.0"
datafusion-common = { path = "../common", version = "16.0.0", features = ["parquet", "object_store"] }
datafusion-expr = { path = "../expr", version = "16.0.0" }
datafusion-jit = { path = "../jit", version = "16.0.0", optional = true }
datafusion-optimizer = { path = "../optimizer", version = "16.0.0" }
datafusion-physical-expr = { path = "../physical-expr", version = "16.0.0" }
datafusion-row = { path = "../row", version = "16.0.0" }
datafusion-sql = { path = "../sql", version = "16.0.0" }
datafusion-common = { path = "../common", version = "17.0.0", features = ["parquet", "object_store"] }
datafusion-expr = { path = "../expr", version = "17.0.0" }
datafusion-jit = { path = "../jit", version = "17.0.0", optional = true }
datafusion-optimizer = { path = "../optimizer", version = "17.0.0" }
datafusion-physical-expr = { path = "../physical-expr", version = "17.0.0" }
datafusion-row = { path = "../row", version = "17.0.0" }
datafusion-sql = { path = "../sql", version = "17.0.0" }
flate2 = { version = "1.0.24", optional = true }
futures = "0.3"
glob = "0.3.0"
Expand Down
4 changes: 2 additions & 2 deletions datafusion/expr/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
[package]
name = "datafusion-expr"
description = "Logical plan and expression representation for DataFusion query engine"
version = "16.0.0"
version = "17.0.0"
homepage = "https://github.com/apache/arrow-datafusion"
repository = "https://github.com/apache/arrow-datafusion"
readme = "README.md"
Expand All @@ -37,6 +37,6 @@ path = "src/lib.rs"
[dependencies]
ahash = { version = "0.8", default-features = false, features = ["runtime-rng"] }
arrow = { version = "31.0.0", default-features = false }
datafusion-common = { path = "../common", version = "16.0.0" }
datafusion-common = { path = "../common", version = "17.0.0" }
log = "^0.4"
sqlparser = "0.30"
6 changes: 3 additions & 3 deletions datafusion/jit/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
[package]
name = "datafusion-jit"
description = "Just In Time (JIT) compilation support for DataFusion query engine"
version = "16.0.0"
version = "17.0.0"
homepage = "https://github.com/apache/arrow-datafusion"
repository = "https://github.com/apache/arrow-datafusion"
readme = "README.md"
Expand All @@ -41,7 +41,7 @@ cranelift = "0.89.0"
cranelift-jit = "0.89.0"
cranelift-module = "0.89.0"
cranelift-native = "0.89.0"
datafusion-common = { path = "../common", version = "16.0.0", features = ["jit"] }
datafusion-expr = { path = "../expr", version = "16.0.0" }
datafusion-common = { path = "../common", version = "17.0.0", features = ["jit"] }
datafusion-expr = { path = "../expr", version = "17.0.0" }

parking_lot = "0.12"
10 changes: 5 additions & 5 deletions datafusion/optimizer/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
[package]
name = "datafusion-optimizer"
description = "DataFusion Query Optimizer"
version = "16.0.0"
version = "17.0.0"
homepage = "https://github.com/apache/arrow-datafusion"
repository = "https://github.com/apache/arrow-datafusion"
readme = "README.md"
Expand All @@ -40,14 +40,14 @@ unicode_expressions = []
arrow = { version = "31.0.0", features = ["prettyprint"] }
async-trait = "0.1.41"
chrono = { version = "0.4.23", default-features = false }
datafusion-common = { path = "../common", version = "16.0.0" }
datafusion-expr = { path = "../expr", version = "16.0.0" }
datafusion-physical-expr = { path = "../physical-expr", version = "16.0.0" }
datafusion-common = { path = "../common", version = "17.0.0" }
datafusion-expr = { path = "../expr", version = "17.0.0" }
datafusion-physical-expr = { path = "../physical-expr", version = "17.0.0" }
hashbrown = { version = "0.13", features = ["raw"] }
log = "^0.4"
regex-syntax = "0.6.28"

[dev-dependencies]
ctor = "0.1.22"
datafusion-sql = { path = "../sql", version = "16.0.0" }
datafusion-sql = { path = "../sql", version = "17.0.0" }
env_logger = "0.10.0"
8 changes: 4 additions & 4 deletions datafusion/physical-expr/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
[package]
name = "datafusion-physical-expr"
description = "Physical expression implementation for DataFusion query engine"
version = "16.0.0"
version = "17.0.0"
homepage = "https://github.com/apache/arrow-datafusion"
repository = "https://github.com/apache/arrow-datafusion"
readme = "README.md"
Expand Down Expand Up @@ -49,9 +49,9 @@ arrow-schema = "31.0.0"
blake2 = { version = "^0.10.2", optional = true }
blake3 = { version = "1.0", optional = true }
chrono = { version = "0.4.23", default-features = false }
datafusion-common = { path = "../common", version = "16.0.0" }
datafusion-expr = { path = "../expr", version = "16.0.0" }
datafusion-row = { path = "../row", version = "16.0.0" }
datafusion-common = { path = "../common", version = "17.0.0" }
datafusion-expr = { path = "../expr", version = "17.0.0" }
datafusion-row = { path = "../row", version = "17.0.0" }
half = { version = "2.1", default-features = false }
hashbrown = { version = "0.13", features = ["raw"] }
indexmap = "1.9.2"
Expand Down
8 changes: 4 additions & 4 deletions datafusion/proto/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
[package]
name = "datafusion-proto"
description = "Protobuf serialization of DataFusion logical plan expressions"
version = "16.0.0"
version = "17.0.0"
homepage = "https://github.com/apache/arrow-datafusion"
repository = "https://github.com/apache/arrow-datafusion"
readme = "README.md"
Expand All @@ -42,9 +42,9 @@ json = ["pbjson", "serde", "serde_json"]
[dependencies]
arrow = "31.0.0"
chrono = { version = "0.4", default-features = false }
datafusion = { path = "../core", version = "16.0.0" }
datafusion-common = { path = "../common", version = "16.0.0" }
datafusion-expr = { path = "../expr", version = "16.0.0" }
datafusion = { path = "../core", version = "17.0.0" }
datafusion-common = { path = "../common", version = "17.0.0" }
datafusion-expr = { path = "../expr", version = "17.0.0" }
object_store = { version = "0.5.0" }
parking_lot = { version = "0.12" }
pbjson = { version = "0.5", optional = true }
Expand Down
6 changes: 3 additions & 3 deletions datafusion/row/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
[package]
name = "datafusion-row"
description = "Row backed by raw bytes for DataFusion query engine"
version = "16.0.0"
version = "17.0.0"
homepage = "https://github.com/apache/arrow-datafusion"
repository = "https://github.com/apache/arrow-datafusion"
readme = "README.md"
Expand All @@ -38,7 +38,7 @@ jit = ["datafusion-jit"]

[dependencies]
arrow = "31.0.0"
datafusion-common = { path = "../common", version = "16.0.0" }
datafusion-jit = { path = "../jit", version = "16.0.0", optional = true }
datafusion-common = { path = "../common", version = "17.0.0" }
datafusion-jit = { path = "../jit", version = "17.0.0", optional = true }
paste = "^1.0"
rand = "0.8"
6 changes: 3 additions & 3 deletions datafusion/sql/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
[package]
name = "datafusion-sql"
description = "DataFusion SQL Query Planner"
version = "16.0.0"
version = "17.0.0"
homepage = "https://github.com/apache/arrow-datafusion"
repository = "https://github.com/apache/arrow-datafusion"
readme = "README.md"
Expand All @@ -38,8 +38,8 @@ unicode_expressions = []

[dependencies]
arrow-schema = "31.0.0"
datafusion-common = { path = "../common", version = "16.0.0" }
datafusion-expr = { path = "../expr", version = "16.0.0" }
datafusion-common = { path = "../common", version = "17.0.0" }
datafusion-expr = { path = "../expr", version = "17.0.0" }
log = "^0.4"
sqlparser = "0.30"

Expand Down
4 changes: 2 additions & 2 deletions datafusion/substrait/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,13 @@

[package]
name = "datafusion-substrait"
version = "16.0.0"
version = "17.0.0"
edition = "2021"
rust-version = "1.62"

[dependencies]
async-recursion = "1.0"
datafusion = { version = "16.0.0", path = "../core" }
datafusion = { version = "17.0.0", path = "../core" }
prost = "0.11"
prost-types = "0.11"
substrait = "0.4"
Expand Down
2 changes: 2 additions & 0 deletions dev/release/crate-deps.dot
Original file line number Diff line number Diff line change
Expand Up @@ -46,5 +46,7 @@ digraph G {

datafusion_proto -> datafusion

datafusion_substrait -> datafusion

datafusion_cli -> datafusion
}
32 changes: 22 additions & 10 deletions dev/release/crate-deps.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions dev/update_datafusion_versions.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@
'datafusion-physical-expr': 'datafusion/physical-expr/Cargo.toml',
'datafusion-proto': 'datafusion/proto/Cargo.toml',
'datafusion-row': 'datafusion/row/Cargo.toml',
'datafusion-substrait': 'datafusion/substrait/Cargo.toml',
'datafusion-sql': 'datafusion/sql/Cargo.toml',
'datafusion-benchmarks': 'benchmarks/Cargo.toml',
'datafusion-examples': 'datafusion-examples/Cargo.toml',
Expand Down

0 comments on commit bc9b78d

Please sign in to comment.