Skip to content

Commit

Permalink
Prepare for 26.0.0 release (#6533)
Browse files Browse the repository at this point in the history
* update version to 26.0.0

* update Cargo.lock

* changelog

* prettier

* update changelog
  • Loading branch information
andygrove authored Jun 5, 2023
1 parent 0c88eec commit 92ccb4c
Show file tree
Hide file tree
Showing 19 changed files with 200 additions and 227 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ members = [
]

[workspace.package]
version = "25.0.0"
version = "26.0.0"
edition = "2021"
readme = "README.md"
authors = ["Apache Arrow <dev@arrow.apache.org>"]
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 = "25.0.0"
version = "26.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 = { workspace = true }
datafusion = { path = "../datafusion/core", version = "25.0.0" }
datafusion = { path = "../datafusion/core", version = "26.0.0" }
env_logger = "0.10"
futures = "0.3"
mimalloc = { version = "0.1", optional = true, default-features = false }
Expand All @@ -48,4 +48,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 = "25.0.0" }
datafusion-proto = { path = "../datafusion/proto", version = "26.0.0" }
82 changes: 42 additions & 40 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 = "25.0.0"
version = "26.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 = "40.0.0"
async-trait = "0.1.41"
clap = { version = "3", features = ["derive", "cargo"] }
datafusion = { path = "../datafusion/core", version = "25.0.0" }
datafusion = { path = "../datafusion/core", version = "26.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

- [26.0.0](../dev/changelog/26.0.0.md)
- [25.0.0](../dev/changelog/25.0.0.md)
- [24.0.0](../dev/changelog/24.0.0.md)
- [23.0.0](../dev/changelog/23.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 @@ -61,13 +61,13 @@ 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 = "25.0.0", features = ["parquet", "object_store"] }
datafusion-execution = { path = "../execution", version = "25.0.0" }
datafusion-expr = { path = "../expr", version = "25.0.0" }
datafusion-optimizer = { path = "../optimizer", version = "25.0.0", default-features = false }
datafusion-physical-expr = { path = "../physical-expr", version = "25.0.0", default-features = false }
datafusion-row = { path = "../row", version = "25.0.0" }
datafusion-sql = { path = "../sql", version = "25.0.0" }
datafusion-common = { path = "../common", version = "26.0.0", features = ["parquet", "object_store"] }
datafusion-execution = { path = "../execution", version = "26.0.0" }
datafusion-expr = { path = "../expr", version = "26.0.0" }
datafusion-optimizer = { path = "../optimizer", version = "26.0.0", default-features = false }
datafusion-physical-expr = { path = "../physical-expr", version = "26.0.0", default-features = false }
datafusion-row = { path = "../row", version = "26.0.0" }
datafusion-sql = { path = "../sql", version = "26.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/execution/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ path = "src/lib.rs"

[dependencies]
dashmap = "5.4.0"
datafusion-common = { path = "../common", version = "25.0.0" }
datafusion-expr = { path = "../expr", version = "25.0.0" }
datafusion-common = { path = "../common", version = "26.0.0" }
datafusion-expr = { path = "../expr", version = "26.0.0" }
hashbrown = { version = "0.13", features = ["raw"] }
log = "^0.4"
object_store = "0.5.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 = "25.0.0" }
datafusion-common = { path = "../common", version = "26.0.0" }
lazy_static = { version = "^1.4.0" }
sqlparser = "0.34"
strum = { version = "0.24", features = ["derive"] }
Expand Down
Loading

0 comments on commit 92ccb4c

Please sign in to comment.