We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 376b782 commit e5aab77Copy full SHA for e5aab77
1 file changed
README.md
@@ -108,6 +108,29 @@ uv run python examples/realtime_synthetic.py
108
uv lock --upgrade
109
```
110
111
+### Publishing a New Version
112
+
113
+The package is automatically published to PyPI when you create a GitHub release:
114
115
+```bash
116
+# 1. Update version in pyproject.toml
117
+version = "0.0.4"
118
119
+# 2. Commit and push
120
+git add pyproject.toml
121
+git commit -m "chore: bump version to 0.0.4"
122
+git push
123
124
+# 3. Create a GitHub release
125
+gh release create v0.0.4 \
126
+ --title "v0.0.4 - Feature summary" \
127
+ --notes "## What's Changed
128
+- Feature 1
129
+- Bug fix 2"
130
+```
131
132
+The GitHub Actions workflow will automatically build, test, and publish to PyPI.
133
134
## License
135
136
MIT
0 commit comments