From 0b62d4c1316da43f3f4d118d0a6552d121e8087f Mon Sep 17 00:00:00 2001 From: Andrew Lamb Date: Thu, 18 Nov 2021 16:13:13 -0500 Subject: [PATCH] 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 2127dc235b45..5b658e064853 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