We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d5fa615 commit bb078cfCopy full SHA for bb078cf
mkdocs/docs/how-to-release.md
@@ -87,11 +87,14 @@ Update the version in `pyproject.toml` and `pyiceberg/__init__.py` to match the
87
To create a patch branch from the latest release tag:
88
89
```bash
90
-# Check out the base branch for the patch version
91
-git checkout pyiceberg-0.8.x
+# Fetch all tags
+git fetch --tags
92
93
-# Create a new branch for the upcoming patch release
94
-git checkout -b pyiceberg-0.8.1
+# Assuming 0.8.0 is the latest release tag
+git checkout -b pyiceberg-0.8.x pyiceberg-0.8.0
95
+
96
+# Cherry-pick commits for the upcoming patch release
97
+git cherry-pick <commit>
98
```
99
100
### Create Tag
0 commit comments