From 83ca861192c598ac0adacdafb7e106abd1ee07e6 Mon Sep 17 00:00:00 2001 From: Andrew Lamb Date: Tue, 31 Dec 2024 16:19:02 -0500 Subject: [PATCH 1/3] Update release instructions for 44.0.0 --- dev/release/README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/dev/release/README.md b/dev/release/README.md index 5dd9b4fc59fd..575daa1bd73c 100644 --- a/dev/release/README.md +++ b/dev/release/README.md @@ -274,6 +274,7 @@ Verify that the Cargo.toml in the tarball contains the correct version (cd datafusion/physical-expr-common && cargo publish) (cd datafusion/functions-aggregate-common && cargo publish) (cd datafusion/functions-window-common && cargo publish) +(cd datafusion/doc && cargo publish) (cd datafusion/expr && cargo publish) (cd datafusion/execution && cargo publish) (cd datafusion/physical-expr && cargo publish) From d4af069f17e21ad10f9b67926bb8eb4cb999144b Mon Sep 17 00:00:00 2001 From: Andrew Lamb Date: Tue, 31 Dec 2024 16:38:02 -0500 Subject: [PATCH 2/3] update macros and order --- dev/release/README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dev/release/README.md b/dev/release/README.md index 575daa1bd73c..74aaeca3fbc8 100644 --- a/dev/release/README.md +++ b/dev/release/README.md @@ -275,10 +275,11 @@ Verify that the Cargo.toml in the tarball contains the correct version (cd datafusion/functions-aggregate-common && cargo publish) (cd datafusion/functions-window-common && cargo publish) (cd datafusion/doc && cargo publish) +(cd datafusion/macros && cargo publish) (cd datafusion/expr && cargo publish) (cd datafusion/execution && cargo publish) -(cd datafusion/physical-expr && cargo publish) (cd datafusion/functions && cargo publish) +(cd datafusion/physical-expr && cargo publish) (cd datafusion/functions-aggregate && cargo publish) (cd datafusion/functions-window && cargo publish) (cd datafusion/functions-nested && cargo publish) From 0ae570108ca9e1054e55df59ef64b8090ac6e628 Mon Sep 17 00:00:00 2001 From: Andrew Lamb Date: Tue, 31 Dec 2024 16:46:42 -0500 Subject: [PATCH 3/3] add functions-table --- datafusion/functions-table/README.md | 26 ++++++++++++++++++++++++++ dev/release/README.md | 1 + 2 files changed, 27 insertions(+) create mode 100644 datafusion/functions-table/README.md diff --git a/datafusion/functions-table/README.md b/datafusion/functions-table/README.md new file mode 100644 index 000000000000..c4e7a5aff999 --- /dev/null +++ b/datafusion/functions-table/README.md @@ -0,0 +1,26 @@ + + +# DataFusion Table Function Library + +[DataFusion][df] is an extensible query execution framework, written in Rust, that uses Apache Arrow as its in-memory format. + +This crate contains table functions that can be used in DataFusion queries. + +[df]: https://crates.io/crates/datafusion diff --git a/dev/release/README.md b/dev/release/README.md index 74aaeca3fbc8..0c0f6ffb21a5 100644 --- a/dev/release/README.md +++ b/dev/release/README.md @@ -283,6 +283,7 @@ Verify that the Cargo.toml in the tarball contains the correct version (cd datafusion/functions-aggregate && cargo publish) (cd datafusion/functions-window && cargo publish) (cd datafusion/functions-nested && cargo publish) +(cd datafusion/functions-table && cargo publish) (cd datafusion/sql && cargo publish) (cd datafusion/optimizer && cargo publish) (cd datafusion/common-runtime && cargo publish)