This is an automated email from the ASF dual-hosted git repository.

fokko pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/iceberg-python.git


The following commit(s) were added to refs/heads/main by this push:
     new 1eeae900 docs: release docs improvements (#3030)
1eeae900 is described below

commit 1eeae9005e4bed42856c825b897c0bb67ea96f84
Author: Kevin Liu <[email protected]>
AuthorDate: Sun Feb 15 16:09:48 2026 -0500

    docs: release docs improvements (#3030)
---
 mkdocs/docs/how-to-release.md | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/mkdocs/docs/how-to-release.md b/mkdocs/docs/how-to-release.md
index 52d57a65..35ec2ef0 100644
--- a/mkdocs/docs/how-to-release.md
+++ b/mkdocs/docs/how-to-release.md
@@ -309,6 +309,9 @@ Kind regards,
 <!-- prettier-ignore-end -->
 
 ```bash
+: "${VERSION_WITH_RC:?ERROR: VERSION_WITH_RC is not set or is empty}"
+: "${VERSION:?ERROR: VERSION is not set or is empty}"
+
 export 
SVN_DEV_DIR_VERSIONED="https://dist.apache.org/repos/dist/dev/iceberg/pyiceberg-${VERSION_WITH_RC}";
 export 
SVN_RELEASE_DIR_VERSIONED="https://dist.apache.org/repos/dist/release/iceberg/pyiceberg-${VERSION}";
 
@@ -337,8 +340,10 @@ The latest version can be pushed to PyPi. Check out the 
Apache SVN and make sure
 <!-- prettier-ignore-end -->
 
 ```bash
-svn checkout https://dist.apache.org/repos/dist/release/iceberg 
/tmp/iceberg-dist-release/
+svn checkout 
https://dist.apache.org/repos/dist/release/iceberg/pyiceberg-${VERSION} 
/tmp/iceberg-dist-release/pyiceberg-${VERSION}
+
 cd /tmp/iceberg-dist-release/pyiceberg-${VERSION}
+
 twine upload pyiceberg-*.whl pyiceberg-*.tar.gz
 ```
 

Reply via email to