This is an automated email from the ASF dual-hosted git repository.
tustvold pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/arrow-rs.git
The following commit(s) were added to refs/heads/master by this push:
new 5b601b306 MINOR: tweak arrow release instructions (#2758)
5b601b306 is described below
commit 5b601b3065d1c239feef6badf3ff68b6d72916a3
Author: Andrew Lamb <[email protected]>
AuthorDate: Tue Sep 20 06:30:55 2022 -0400
MINOR: tweak arrow release instructions (#2758)
---
dev/release/README.md | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/dev/release/README.md b/dev/release/README.md
index 48748eccb..d418a09d0 100644
--- a/dev/release/README.md
+++ b/dev/release/README.md
@@ -74,9 +74,12 @@ git checkout -b make-release
# manully edit ./dev/release/update_change_log.sh to reflect the release
version
# create the changelog
CHANGELOG_GITHUB_TOKEN=<TOKEN> ./dev/release/update_change_log.sh
+# run automated script to copy labels to issues based on referenced PRs
+python dev/release/label_issues.py
# review change log / edit issues and labels if needed, rerun
git commit -a -m 'Create changelog'
+
# update versions
sed -i '' -e 's/14.0.0/23.0.0/g' `find . -name 'Cargo.toml' -or -name '*.md' |
grep -v CHANGELOG.md`
git commit -a -m 'Update version'
@@ -228,6 +231,7 @@ following commands
Rust Arrow Crates:
```shell
+(cd arrow-buffer && cargo publish)
(cd arrow && cargo publish)
(cd arrow-flight && cargo publish)
(cd parquet && cargo publish)