-
Notifications
You must be signed in to change notification settings - Fork 413
docs: improve release docs #2374
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -19,7 +19,7 @@ | |
|
|
||
| # Verifying a release | ||
|
|
||
| Each Apache PyIceberg release is validated by the community by holding a vote. A community release manager will prepare a release candidate and call a vote on the Iceberg dev list. To validate the release candidate, community members will test it out in their downstream projects and environments. | ||
| Each PyIceberg release is validated by the community by holding a vote. A community release manager will prepare a release candidate and call a vote on the Iceberg dev list. To validate the release candidate, community members will test it out in their downstream projects and environments. | ||
|
|
||
| In addition to testing in downstream projects, community members also check the release’s signatures, checksums, and license documentation. | ||
|
|
||
|
|
@@ -48,13 +48,18 @@ Set an environment variable to the version to verify and path to use | |
|
|
||
| ```sh | ||
| export PYICEBERG_VERSION=<version> # e.g. 0.6.1rc3 | ||
| ``` | ||
|
|
||
| And a temp folder for the artifacts | ||
|
|
||
| ```sh | ||
| export PYICEBERG_VERIFICATION_DIR=/tmp/pyiceberg/${PYICEBERG_VERSION} | ||
| ``` | ||
|
|
||
| Next, verify the `.asc` file. | ||
|
|
||
| ```sh | ||
| svn checkout https://dist.apache.org/repos/dist/dev/iceberg/pyiceberg-${PYICEBERG_VERSION}/ ${PYICEBERG_VERIFICATION_DIR} | ||
| svn checkout https://dist.apache.org/repos/dist/dev/iceberg/pyiceberg-$PYICEBERG_VERSION/ ${PYICEBERG_VERIFICATION_DIR} | ||
|
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. previously
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Caught me several times!
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. same, but no more! |
||
|
|
||
| cd ${PYICEBERG_VERIFICATION_DIR} | ||
|
|
||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.