You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by ag...@apache.org on 2023/01/31 19:14:57 UTC

[arrow-datafusion] branch master updated: Fix release issues (#5116)

This is an automated email from the ASF dual-hosted git repository.

agrove pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/arrow-datafusion.git


The following commit(s) were added to refs/heads/master by this push:
     new abeb4fe9b Fix release issues (#5116)
abeb4fe9b is described below

commit abeb4fe9b516976f59b421cf886014a08bc930c0
Author: Andy Grove <an...@gmail.com>
AuthorDate: Tue Jan 31 12:14:49 2023 -0700

    Fix release issues (#5116)
    
    * Fix release issues
    
    * use versioned dependency
---
 datafusion/sql/Cargo.toml       | 2 +-
 datafusion/substrait/Cargo.toml | 2 ++
 dev/release/README.md           | 1 +
 3 files changed, 4 insertions(+), 1 deletion(-)

diff --git a/datafusion/sql/Cargo.toml b/datafusion/sql/Cargo.toml
index 39d1a47a1..3f9057d56 100644
--- a/datafusion/sql/Cargo.toml
+++ b/datafusion/sql/Cargo.toml
@@ -44,4 +44,4 @@ log = "^0.4"
 sqlparser = "0.30"
 
 [dev-dependencies]
-rstest = "*"
+rstest = "0.16"
diff --git a/datafusion/substrait/Cargo.toml b/datafusion/substrait/Cargo.toml
index a007c8312..1029b4c85 100644
--- a/datafusion/substrait/Cargo.toml
+++ b/datafusion/substrait/Cargo.toml
@@ -17,6 +17,8 @@
 
 [package]
 name = "datafusion-substrait"
+description = "DataFusion Substrait Producer and Consumer"
+license = "Apache-2.0"
 version = "17.0.0"
 edition = "2021"
 rust-version = "1.62"
diff --git a/dev/release/README.md b/dev/release/README.md
index 940770b90..fd328207b 100644
--- a/dev/release/README.md
+++ b/dev/release/README.md
@@ -311,6 +311,7 @@ dot -Tsvg dev/release/crate-deps.dot > dev/release/crate-deps.svg
 (cd datafusion/optimizer && cargo publish)
 (cd datafusion/core && cargo publish)
 (cd datafusion/proto && cargo publish)
+(cd datafusion/substrait && cargo publish)
 ```
 
 The CLI needs a `--no-verify` argument because `build.rs` generates source into the `src` directory.