Skip to content

Commit db4688e

Browse files
committed
release
1 parent 62c57e6 commit db4688e

1 file changed

Lines changed: 19 additions & 1 deletion

File tree

docs/pypi-release-guide.md

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,25 @@ print("ok", predicate_contracts.__name__, predicate_authority.__name__)
6060
PY
6161
```
6262

63-
## 5) Manual fallback publish (if needed)
63+
## 5) Optional: create git tags per package release
64+
65+
Tags are not required for publishing in this repo, but they are recommended for traceability.
66+
67+
Suggested tag format:
68+
69+
- `predicate-contracts-vX.Y.Z`
70+
- `predicate-authority-vX.Y.Z`
71+
72+
Example commands (after publish succeeds):
73+
74+
```bash
75+
git tag -a predicate-contracts-v0.1.0 -m "predicate-contracts v0.1.0"
76+
git tag -a predicate-authority-v0.1.0 -m "predicate-authority v0.1.0"
77+
git push origin predicate-contracts-v0.1.0
78+
git push origin predicate-authority-v0.1.0
79+
```
80+
81+
## 6) Manual fallback publish (if needed)
6482

6583
```bash
6684
python -m pip install --upgrade build twine

0 commit comments

Comments
 (0)