Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prepare 38.0.0 release candidate 1 #10407

Merged
merged 4 commits into from
May 7, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
38 changes: 19 additions & 19 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -44,14 +44,14 @@ members = [
resolver = "2"

[workspace.package]
authors = ["Apache Arrow <dev@arrow.apache.org>"]
authors = ["Apache DataFusion <dev@datafusion.apache.org>"]
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

👍

edition = "2021"
homepage = "https://github.com/apache/datafusion"
homepage = "https://datafusion.apache.org"
license = "Apache-2.0"
readme = "README.md"
repository = "https://github.com/apache/datafusion"
rust-version = "1.73"
version = "37.1.0"
version = "38.0.0"

[workspace.dependencies]
# We turn off default-features for some dependencies here so the workspaces which inherit them can
Expand All @@ -73,22 +73,22 @@ bytes = "1.4"
chrono = { version = "0.4.34", default-features = false }
ctor = "0.2.0"
dashmap = "5.4.0"
datafusion = { path = "datafusion/core", version = "37.1.0", default-features = false }
datafusion-common = { path = "datafusion/common", version = "37.1.0", default-features = false }
datafusion-common-runtime = { path = "datafusion/common-runtime", version = "37.1.0" }
datafusion-execution = { path = "datafusion/execution", version = "37.1.0" }
datafusion-expr = { path = "datafusion/expr", version = "37.1.0" }
datafusion-functions = { path = "datafusion/functions", version = "37.1.0" }
datafusion-functions-aggregate = { path = "datafusion/functions-aggregate", version = "37.1.0" }
datafusion-functions-array = { path = "datafusion/functions-array", version = "37.1.0" }
datafusion-optimizer = { path = "datafusion/optimizer", version = "37.1.0", default-features = false }
datafusion-physical-expr = { path = "datafusion/physical-expr", version = "37.1.0", default-features = false }
datafusion-physical-expr-common = { path = "datafusion/physical-expr-common", version = "37.1.0", default-features = false }
datafusion-physical-plan = { path = "datafusion/physical-plan", version = "37.1.0" }
datafusion-proto = { path = "datafusion/proto", version = "37.1.0" }
datafusion-sql = { path = "datafusion/sql", version = "37.1.0" }
datafusion-sqllogictest = { path = "datafusion/sqllogictest", version = "37.1.0" }
datafusion-substrait = { path = "datafusion/substrait", version = "37.1.0" }
datafusion = { path = "datafusion/core", version = "38.0.0", default-features = false }
datafusion-common = { path = "datafusion/common", version = "38.0.0", default-features = false }
datafusion-common-runtime = { path = "datafusion/common-runtime", version = "38.0.0" }
datafusion-execution = { path = "datafusion/execution", version = "38.0.0" }
datafusion-expr = { path = "datafusion/expr", version = "38.0.0" }
datafusion-functions = { path = "datafusion/functions", version = "38.0.0" }
datafusion-functions-aggregate = { path = "datafusion/functions-aggregate", version = "38.0.0" }
datafusion-functions-array = { path = "datafusion/functions-array", version = "38.0.0" }
datafusion-optimizer = { path = "datafusion/optimizer", version = "38.0.0", default-features = false }
datafusion-physical-expr = { path = "datafusion/physical-expr", version = "38.0.0", default-features = false }
datafusion-physical-expr-common = { path = "datafusion/physical-expr-common", version = "38.0.0", default-features = false }
datafusion-physical-plan = { path = "datafusion/physical-plan", version = "38.0.0" }
datafusion-proto = { path = "datafusion/proto", version = "38.0.0" }
datafusion-sql = { path = "datafusion/sql", version = "38.0.0" }
datafusion-sqllogictest = { path = "datafusion/sqllogictest", version = "38.0.0" }
datafusion-substrait = { path = "datafusion/substrait", version = "38.0.0" }
doc-comment = "0.3"
env_logger = "0.11"
futures = "0.3"
Expand Down
Loading
Loading