diff --git a/datafusion/expr-common/README.md b/datafusion/expr-common/README.md new file mode 100644 index 000000000000..b086f930e871 --- /dev/null +++ b/datafusion/expr-common/README.md @@ -0,0 +1,26 @@ + + +# DataFusion Logical Plan and Expressions + +[DataFusion][df] is an extensible query execution framework, written in Rust, that uses Apache Arrow as its in-memory format. + +This crate is a submodule of DataFusion that provides data types and utilities for logical plans and expressions. + +[df]: https://crates.io/crates/datafusion diff --git a/datafusion/functions-aggregate-common/README.md b/datafusion/functions-aggregate-common/README.md new file mode 100644 index 000000000000..29b313d2a903 --- /dev/null +++ b/datafusion/functions-aggregate-common/README.md @@ -0,0 +1,27 @@ + + +# DataFusion Aggregate 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 packages of function that can be used to customize the +functionality of DataFusion. + +[df]: https://crates.io/crates/datafusion diff --git a/dev/release/README.md b/dev/release/README.md index bd9c0621fdbc..01408cd3e307 100644 --- a/dev/release/README.md +++ b/dev/release/README.md @@ -260,18 +260,21 @@ Verify that the Cargo.toml in the tarball contains the correct version ```shell (cd datafusion/common && cargo publish) +(cd datafusion/expr-common && cargo publish) +(cd datafusion/physical-expr-common && cargo publish) +(cd datafusion/functions-aggregate-common && cargo publish) (cd datafusion/expr && cargo publish) (cd datafusion/execution && cargo publish) -(cd datafusion/physical-expr-common && cargo publish) -(cd datafusion/functions-aggregate && cargo publish) (cd datafusion/physical-expr && cargo publish) +(cd datafusion/functions-aggregate && cargo publish) (cd datafusion/functions && cargo publish) (cd datafusion/functions-nested && cargo publish) +(cd datafusion/functions-window && cargo publish) (cd datafusion/sql && cargo publish) (cd datafusion/optimizer && cargo publish) (cd datafusion/common-runtime && cargo publish) -(cd datafusion/catalog && cargo publish) (cd datafusion/physical-plan && cargo publish) +(cd datafusion/catalog && cargo publish) (cd datafusion/physical-optimizer && cargo publish) (cd datafusion/core && cargo publish) (cd datafusion/proto-common && cargo publish)