Skip to content

Commit 0867086

Browse files
authored
Prepare for 46.0.0 release: Version and Changelog (apache#14903)
* Prepare for 46.0.0 release: Version and Changelog * update
1 parent 4d2e06f commit 0867086

File tree

4 files changed

+470
-62
lines changed

4 files changed

+470
-62
lines changed

Cargo.lock

+33-33
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+28-28
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ repository = "https://github.com/apache/datafusion"
6969
# Define Minimum Supported Rust Version (MSRV)
7070
rust-version = "1.82.0"
7171
# Define DataFusion version
72-
version = "45.0.0"
72+
version = "46.0.0"
7373

7474
[workspace.dependencies]
7575
# We turn off default-features for some dependencies here so the workspaces which inherit them can
@@ -100,33 +100,33 @@ chrono = { version = "0.4.38", default-features = false }
100100
criterion = "0.5.1"
101101
ctor = "0.2.9"
102102
dashmap = "6.0.1"
103-
datafusion = { path = "datafusion/core", version = "45.0.0", default-features = false }
104-
datafusion-catalog = { path = "datafusion/catalog", version = "45.0.0" }
105-
datafusion-catalog-listing = { path = "datafusion/catalog-listing", version = "45.0.0" }
106-
datafusion-common = { path = "datafusion/common", version = "45.0.0", default-features = false }
107-
datafusion-common-runtime = { path = "datafusion/common-runtime", version = "45.0.0" }
108-
datafusion-datasource = { path = "datafusion/datasource", version = "45.0.0", default-features = false }
109-
datafusion-doc = { path = "datafusion/doc", version = "45.0.0" }
110-
datafusion-execution = { path = "datafusion/execution", version = "45.0.0" }
111-
datafusion-expr = { path = "datafusion/expr", version = "45.0.0" }
112-
datafusion-expr-common = { path = "datafusion/expr-common", version = "45.0.0" }
113-
datafusion-ffi = { path = "datafusion/ffi", version = "45.0.0" }
114-
datafusion-functions = { path = "datafusion/functions", version = "45.0.0" }
115-
datafusion-functions-aggregate = { path = "datafusion/functions-aggregate", version = "45.0.0" }
116-
datafusion-functions-aggregate-common = { path = "datafusion/functions-aggregate-common", version = "45.0.0" }
117-
datafusion-functions-nested = { path = "datafusion/functions-nested", version = "45.0.0" }
118-
datafusion-functions-table = { path = "datafusion/functions-table", version = "45.0.0" }
119-
datafusion-functions-window = { path = "datafusion/functions-window", version = "45.0.0" }
120-
datafusion-functions-window-common = { path = "datafusion/functions-window-common", version = "45.0.0" }
121-
datafusion-macros = { path = "datafusion/macros", version = "45.0.0" }
122-
datafusion-optimizer = { path = "datafusion/optimizer", version = "45.0.0", default-features = false }
123-
datafusion-physical-expr = { path = "datafusion/physical-expr", version = "45.0.0", default-features = false }
124-
datafusion-physical-expr-common = { path = "datafusion/physical-expr-common", version = "45.0.0", default-features = false }
125-
datafusion-physical-optimizer = { path = "datafusion/physical-optimizer", version = "45.0.0" }
126-
datafusion-physical-plan = { path = "datafusion/physical-plan", version = "45.0.0" }
127-
datafusion-proto = { path = "datafusion/proto", version = "45.0.0" }
128-
datafusion-proto-common = { path = "datafusion/proto-common", version = "45.0.0" }
129-
datafusion-sql = { path = "datafusion/sql", version = "45.0.0" }
103+
datafusion = { path = "datafusion/core", version = "46.0.0", default-features = false }
104+
datafusion-catalog = { path = "datafusion/catalog", version = "46.0.0" }
105+
datafusion-catalog-listing = { path = "datafusion/catalog-listing", version = "46.0.0" }
106+
datafusion-common = { path = "datafusion/common", version = "46.0.0", default-features = false }
107+
datafusion-common-runtime = { path = "datafusion/common-runtime", version = "46.0.0" }
108+
datafusion-datasource = { path = "datafusion/datasource", version = "46.0.0", default-features = false }
109+
datafusion-doc = { path = "datafusion/doc", version = "46.0.0" }
110+
datafusion-execution = { path = "datafusion/execution", version = "46.0.0" }
111+
datafusion-expr = { path = "datafusion/expr", version = "46.0.0" }
112+
datafusion-expr-common = { path = "datafusion/expr-common", version = "46.0.0" }
113+
datafusion-ffi = { path = "datafusion/ffi", version = "46.0.0" }
114+
datafusion-functions = { path = "datafusion/functions", version = "46.0.0" }
115+
datafusion-functions-aggregate = { path = "datafusion/functions-aggregate", version = "46.0.0" }
116+
datafusion-functions-aggregate-common = { path = "datafusion/functions-aggregate-common", version = "46.0.0" }
117+
datafusion-functions-nested = { path = "datafusion/functions-nested", version = "46.0.0" }
118+
datafusion-functions-table = { path = "datafusion/functions-table", version = "46.0.0" }
119+
datafusion-functions-window = { path = "datafusion/functions-window", version = "46.0.0" }
120+
datafusion-functions-window-common = { path = "datafusion/functions-window-common", version = "46.0.0" }
121+
datafusion-macros = { path = "datafusion/macros", version = "46.0.0" }
122+
datafusion-optimizer = { path = "datafusion/optimizer", version = "46.0.0", default-features = false }
123+
datafusion-physical-expr = { path = "datafusion/physical-expr", version = "46.0.0", default-features = false }
124+
datafusion-physical-expr-common = { path = "datafusion/physical-expr-common", version = "46.0.0", default-features = false }
125+
datafusion-physical-optimizer = { path = "datafusion/physical-optimizer", version = "46.0.0" }
126+
datafusion-physical-plan = { path = "datafusion/physical-plan", version = "46.0.0" }
127+
datafusion-proto = { path = "datafusion/proto", version = "46.0.0" }
128+
datafusion-proto-common = { path = "datafusion/proto-common", version = "46.0.0" }
129+
datafusion-sql = { path = "datafusion/sql", version = "46.0.0" }
130130
doc-comment = "0.3"
131131
env_logger = "0.11"
132132
futures = "0.3"

0 commit comments

Comments
 (0)