From b10b820acb6ad92b5d69810e3d4de0ef6f2d6a87 Mon Sep 17 00:00:00 2001 From: Andy Grove Date: Thu, 8 Aug 2024 11:03:10 -0600 Subject: [PATCH] regenerate example parquet file --- datafusion/core/example.parquet | Bin 976 -> 976 bytes dev/release/README.md | 23 +++++++++++++++++------ 2 files changed, 17 insertions(+), 6 deletions(-) diff --git a/datafusion/core/example.parquet b/datafusion/core/example.parquet index 94de10394b33d26a23a9888e88faa1fa90f14043..17f7473cd221426b545a5f437c42efdc6b1702b3 100644 GIT binary patch delta 33 kcmcb>et~_%c4kRKJp(-hNgEjk1_)xvVq{et~_%c4kQfJs^~{kzrtfAcibP28IB~AVUC$Sq4S` diff --git a/dev/release/README.md b/dev/release/README.md index c6bc9be2b0db..1817b3002578 100644 --- a/dev/release/README.md +++ b/dev/release/README.md @@ -124,20 +124,31 @@ Here are the commands that could be used to prepare the `38.0.0` release: Checkout the main commit to be released -``` +```shell git fetch apache git checkout apache/main ``` -Update datafusion version in `datafusion/Cargo.toml` to `38.0.0`: +Manually update the datafusion version in the root `Cargo.toml` to `38.0.0`. +Run `cargo update` in the root directory and also in `datafusion-cli`: + +```shell +cargo update +cd datafustion-cli +cargo update +cd .. ``` -./dev/update_datafusion_versions.py 38.0.0 + +Run `cargo test` to re-generate some example files: + +```shell +cargo test ``` Lastly commit the version change: -``` +```shell git commit -a -m 'Update version' ``` @@ -193,7 +204,7 @@ For the release to become "official" it needs at least three PMC members to vote The `dev/release/verify-release-candidate.sh` is a script in this repository that can assist in the verification process. Run it like: -``` +```shell ./dev/release/verify-release-candidate.sh 38.0.0 0 ``` @@ -222,7 +233,7 @@ Congratulations! The release is now official! Tag the same release candidate commit with the final release tag -``` +```shell git co apache/38.0.0-rc0 git tag 38.0.0 git push apache 38.0.0