Skip to content

Commit

Permalink
Prepare 29.0.0 Release (apache#7270)
Browse files Browse the repository at this point in the history
* update version

* changelog

* cargo update

* asf header
  • Loading branch information
andygrove authored Aug 14, 2023
1 parent 3bbf48a commit a5e86fa
Show file tree
Hide file tree
Showing 16 changed files with 225 additions and 52 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ license = "Apache-2.0"
readme = "README.md"
repository = "https://github.com/apache/arrow-datafusion"
rust-version = "1.70"
version = "28.0.0"
version = "29.0.0"

[workspace.dependencies]
arrow = { version = "45.0.0", features = ["prettyprint", "dyn_cmp_dict"] }
Expand Down
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 = "28.0.0"
version = "29.0.0"
edition = { workspace = true }
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 = { workspace = true }
datafusion = { path = "../datafusion/core", version = "28.0.0" }
datafusion = { path = "../datafusion/core", version = "29.0.0" }
env_logger = "0.10"
futures = "0.3"
log = "^0.4"
Expand All @@ -49,4 +49,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 = "28.0.0" }
datafusion-proto = { path = "../datafusion/proto", version = "29.0.0" }
53 changes: 31 additions & 22 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 = "28.0.0"
version = "29.0.0"
authors = ["Apache Arrow <dev@arrow.apache.org>"]
edition = "2021"
keywords = ["arrow", "datafusion", "query", "sql"]
Expand All @@ -34,7 +34,7 @@ async-trait = "0.1.41"
aws-config = "0.55"
aws-credential-types = "0.55"
clap = { version = "3", features = ["derive", "cargo"] }
datafusion = { path = "../datafusion/core", version = "28.0.0" }
datafusion = { path = "../datafusion/core", version = "29.0.0" }
dirs = "4.0.0"
env_logger = "0.9"
mimalloc = { version = "0.1", default-features = false }
Expand Down
1 change: 1 addition & 0 deletions datafusion/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@

# Changelog

- [29.0.0](../dev/changelog/29.0.0.md)
- [28.0.0](../dev/changelog/28.0.0.md)
- [27.0.0](../dev/changelog/27.0.0.md)
- [26.0.0](../dev/changelog/26.0.0.md)
Expand Down
14 changes: 7 additions & 7 deletions datafusion/core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -62,12 +62,12 @@ bytes = "1.4"
bzip2 = { version = "0.4.3", optional = true }
chrono = { version = "0.4.23", default-features = false }
dashmap = "5.4.0"
datafusion-common = { path = "../common", version = "28.0.0", features = ["parquet", "object_store"] }
datafusion-execution = { path = "../execution", version = "28.0.0" }
datafusion-expr = { path = "../expr", version = "28.0.0" }
datafusion-optimizer = { path = "../optimizer", version = "28.0.0", default-features = false }
datafusion-physical-expr = { path = "../physical-expr", version = "28.0.0", default-features = false }
datafusion-sql = { path = "../sql", version = "28.0.0" }
datafusion-common = { path = "../common", version = "29.0.0", features = ["parquet", "object_store"] }
datafusion-execution = { path = "../execution", version = "29.0.0" }
datafusion-expr = { path = "../expr", version = "29.0.0" }
datafusion-optimizer = { path = "../optimizer", version = "29.0.0", default-features = false }
datafusion-physical-expr = { path = "../physical-expr", version = "29.0.0", default-features = false }
datafusion-sql = { path = "../sql", version = "29.0.0" }
flate2 = { version = "1.0.24", optional = true }
futures = "0.3"
glob = "0.3.0"
Expand Down Expand Up @@ -102,7 +102,7 @@ bigdecimal = "0.4.1"
criterion = { version = "0.5", features = ["async_tokio"] }
csv = "1.1.6"
ctor = "0.2.0"
datafusion-sqllogictest = { path = "../sqllogictest", version = "28.0.0", features = ["postgres"] }
datafusion-sqllogictest = { path = "../sqllogictest", version = "29.0.0", features = ["postgres"] }
doc-comment = "0.3"
env_logger = "0.10"
half = "2.2.1"
Expand Down
4 changes: 2 additions & 2 deletions datafusion/execution/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@ path = "src/lib.rs"
[dependencies]
arrow = { workspace = true }
dashmap = "5.4.0"
datafusion-common = { path = "../common", version = "28.0.0" }
datafusion-expr = { path = "../expr", version = "28.0.0" }
datafusion-common = { path = "../common", version = "29.0.0" }
datafusion-expr = { path = "../expr", version = "29.0.0" }
futures = "0.3"
hashbrown = { version = "0.14", features = ["raw"] }
log = "^0.4"
Expand Down
2 changes: 1 addition & 1 deletion datafusion/expr/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ path = "src/lib.rs"
[dependencies]
ahash = { version = "0.8", default-features = false, features = ["runtime-rng"] }
arrow = { workspace = true }
datafusion-common = { path = "../common", version = "28.0.0" }
datafusion-common = { path = "../common", version = "29.0.0" }
lazy_static = { version = "^1.4.0" }
sqlparser = { workspace = true }
strum = { version = "0.25.0", features = ["derive"] }
Expand Down
8 changes: 4 additions & 4 deletions datafusion/optimizer/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -43,15 +43,15 @@ unicode_expressions = ["datafusion-physical-expr/unicode_expressions"]
arrow = { workspace = true }
async-trait = "0.1.41"
chrono = { version = "0.4.23", default-features = false }
datafusion-common = { path = "../common", version = "28.0.0" }
datafusion-expr = { path = "../expr", version = "28.0.0" }
datafusion-physical-expr = { path = "../physical-expr", version = "28.0.0", default-features = false }
datafusion-common = { path = "../common", version = "29.0.0" }
datafusion-expr = { path = "../expr", version = "29.0.0" }
datafusion-physical-expr = { path = "../physical-expr", version = "29.0.0", default-features = false }
hashbrown = { version = "0.14", features = ["raw"] }
itertools = "0.11"
log = "^0.4"
regex-syntax = "0.7.1"

[dev-dependencies]
ctor = "0.2.0"
datafusion-sql = { path = "../sql", version = "28.0.0" }
datafusion-sql = { path = "../sql", version = "29.0.0" }
env_logger = "0.10.0"
4 changes: 2 additions & 2 deletions datafusion/physical-expr/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,8 @@ base64 = { version = "0.21", optional = true }
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 = "28.0.0" }
datafusion-expr = { path = "../expr", version = "28.0.0" }
datafusion-common = { path = "../common", version = "29.0.0" }
datafusion-expr = { path = "../expr", version = "29.0.0" }
half = { version = "2.1", default-features = false }
hashbrown = { version = "0.14", features = ["raw"] }
hex = { version = "0.4", optional = true }
Expand Down
6 changes: 3 additions & 3 deletions datafusion/proto/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,9 @@ json = ["pbjson", "serde", "serde_json"]
[dependencies]
arrow = { workspace = true }
chrono = { version = "0.4", default-features = false }
datafusion = { path = "../core", version = "28.0.0" }
datafusion-common = { path = "../common", version = "28.0.0" }
datafusion-expr = { path = "../expr", version = "28.0.0" }
datafusion = { path = "../core", version = "29.0.0" }
datafusion-common = { path = "../common", version = "29.0.0" }
datafusion-expr = { path = "../expr", version = "29.0.0" }
object_store = { version = "0.6.1" }
pbjson = { version = "0.5", optional = true }
prost = "0.11.0"
Expand Down
4 changes: 2 additions & 2 deletions datafusion/sql/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ unicode_expressions = []
[dependencies]
arrow = { workspace = true }
arrow-schema = { workspace = true }
datafusion-common = { path = "../common", version = "28.0.0" }
datafusion-expr = { path = "../expr", version = "28.0.0" }
datafusion-common = { path = "../common", version = "29.0.0" }
datafusion-expr = { path = "../expr", version = "29.0.0" }
log = "^0.4"
sqlparser = { workspace = true }

Expand Down
4 changes: 2 additions & 2 deletions datafusion/sqllogictest/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ path = "src/lib.rs"
arrow = {workspace = true}
async-trait = "0.1.41"
bigdecimal = "0.4.1"
datafusion = {path = "../core", version = "28.0.0"}
datafusion-common = {path = "../common", version = "28.0.0"}
datafusion = {path = "../core", version = "29.0.0"}
datafusion-common = {path = "../common", version = "29.0.0"}
half = "2.2.1"
itertools = "0.11"
lazy_static = {version = "^1.4.0"}
Expand Down
2 changes: 1 addition & 1 deletion datafusion/substrait/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ rust-version = "1.70"
[dependencies]
async-recursion = "1.0"
chrono = { version = "0.4.23", default-features = false }
datafusion = { version = "28.0.0", path = "../core" }
datafusion = { version = "29.0.0", path = "../core" }
itertools = "0.11"
object_store = "0.6.1"
prost = "0.11"
Expand Down
Loading

0 comments on commit a5e86fa

Please sign in to comment.