-
Notifications
You must be signed in to change notification settings - Fork 958
Update release instructions to not push tags until release is approved #7754
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Conversation
dev/release/README.md
Outdated
### Pick an Release Candidate (RC) number | ||
|
||
Pick numbers in sequential order, with `1` for `rc1`, `2` for `rc2`, etc. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can we move this before ### Create git tag for the release:
?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
+1
git push apache <version> | ||
``` | ||
|
||
Move tarball to the release location in SVN, e.g. https://dist.apache.org/repos/dist/release/arrow/arrow-4.1.0/, using the `release-tarball.sh` script: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Move tarball to the release location in SVN, e.g. https://dist.apache.org/repos/dist/release/arrow/arrow-4.1.0/, using the `release-tarball.sh` script: | |
Move tarball to the release location in SVN, e.g. https://dist.apache.org/repos/dist/release/arrow/arrow-rs-4.1.0/, using the `release-tarball.sh` script: |
@@ -109,21 +109,21 @@ distribution servers. | |||
|
|||
While the official release artifact is a signed tarball, we also tag the commit it was created for convenience and code archaeology. | |||
|
|||
### Pick a Release Candidate (RC) number |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
"Pick a Release Candidate (RC) number" -> "Create git tag for the release" order may be better:
diff --git a/dev/release/README.md b/dev/release/README.md
index 7b2d4f175..e2257b69c 100644
--- a/dev/release/README.md
+++ b/dev/release/README.md
@@ -105,14 +105,14 @@ create a release candidate using the following steps. Note you need to
be a committer to run these scripts as they upload to the apache `svn`
distribution servers.
-### Create git tag for the release:
-
-While the official release artifact is a signed tarball, we also tag the commit it was created for convenience and code archaeology.
-
### Pick a Release Candidate (RC) number
Pick numbers in sequential order, with `1` for `rc1`, `2` for `rc2`, etc.
+### Create git tag for the release:
+
+While the official release artifact is a signed tarball, we also tag the commit it was created for convenience and code archaeology.
+
Use a string such as `43.0.0` as the `<version>`.
Create and push the tag thusly (for example, for version `4.1.0` and `rc2` would be `4.1.0-rc2`):
Which issue does this PR close?
Rationale for this change
When we push a tag like
55.2.0
to github it now makes a github 'release' (thanks to @kou )https://github.com/apache/arrow-rs/relea
However we shouldn't make a release until it is officially approved per ASF guidelines to avoid confusion about what constitutes an official release
What changes are included in this PR?
dev/release/create-tarball.sh
to use new schemeAre there any user-facing changes?
Hopefully next release we'll only see releases after the release is approved.
Are the changes tested?
I tested this manually locally and it seems to work well