Skip to content

Commit

Permalink
build: Use DataFusion 39.0.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
viirya committed Jun 10, 2024
1 parent c87fabe commit 3b9bd6c
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -71,12 +71,12 @@ itertools = "0.11.0"
chrono = { version = "0.4", default-features = false, features = ["clock"] }
chrono-tz = { version = "0.8" }
paste = "1.0.14"
datafusion-common = { git = "https://github.com/apache/arrow-datafusion.git", tag = "39.0.0-rc1" }
datafusion = { default-features = false, git = "https://github.com/apache/arrow-datafusion.git", tag = "39.0.0-rc1", features = ["unicode_expressions", "crypto_expressions"] }
datafusion-functions = { git = "https://github.com/apache/arrow-datafusion.git", tag = "39.0.0-rc1", features = ["crypto_expressions"] }
datafusion-expr = { git = "https://github.com/apache/arrow-datafusion.git", tag = "39.0.0-rc1", default-features = false }
datafusion-physical-expr-common = { git = "https://github.com/apache/arrow-datafusion.git", tag = "39.0.0-rc1", default-features = false }
datafusion-physical-expr = { git = "https://github.com/apache/arrow-datafusion.git", tag = "39.0.0-rc1", default-features = false }
datafusion-common = { version = "39.0.0" }
datafusion = { default-features = false, version = "39.0.0", features = ["unicode_expressions", "crypto_expressions"] }
datafusion-functions = { version = "39.0.0", features = ["crypto_expressions"] }
datafusion-expr = { version = "39.0.0", default-features = false }
datafusion-physical-expr-common = { version = "39.0.0", default-features = false }
datafusion-physical-expr = { version = "39.0.0", default-features = false }
unicode-segmentation = "^1.10.1"
once_cell = "1.18.0"
regex = "1.9.6"
Expand Down

0 comments on commit 3b9bd6c

Please sign in to comment.