You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by al...@apache.org on 2021/11/18 21:13:20 UTC

[arrow-datafusion] 01/01: Update release instructions

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

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

commit 0b62d4c1316da43f3f4d118d0a6552d121e8087f
Author: Andrew Lamb <an...@nerdnetworks.org>
AuthorDate: Thu Nov 18 16:13:13 2021 -0500

    Update release instructions
    
    1. Changed the order of publishing ballista crates to crates.io to be correct (`core` must be published first)
    2. Add instructions for publishing `datafusion-cli`
---
 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 2127dc2..5b658e0 100644
--- a/dev/release/README.md
+++ b/dev/release/README.md
@@ -290,10 +290,11 @@ following commands
 If there is a ballista release, run
 
 ```shell
-(cd ballista/rust/client && cargo publish)
 (cd ballista/rust/core && cargo publish)
 (cd ballista/rust/executor && cargo publish)
 (cd ballista/rust/scheduler && cargo publish)
+(cd ballista/rust/client && cargo publish)
+(cd datafusion-cli && cargo publish)
 ```
 
 ### Publish on PyPI