Skip to content

Commit f780097

Browse files
committed
minor fix
1 parent 1a71d6b commit f780097

File tree

1 file changed

+8
-6
lines changed

1 file changed

+8
-6
lines changed

README.md

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Python bindings for the webview library, allowing you to create desktop applicat
1212
## Installation
1313

1414
```bash
15-
pip install webview
15+
pip install webview_python
1616
```
1717

1818
## Usage
@@ -182,17 +182,19 @@ For maintainers who want to release a new version:
182182
2. **Create Release**
183183
```bash
184184
# Commit changes
185-
version=0.99.0
185+
old_version=0.99.0
186+
new_version=0.99.1
186187
git add pyproject.toml
187-
git commit -m "Bump version to ${version}"
188+
git commit -m "Bump version to ${new_version}"
188189
git push origin main
189190

190191
# Create and push tag
191-
git tag v${version}
192-
git push origin v${version}
192+
git tag v${new_version}
193+
git push origin v${new_version}
193194

194195
# Create GitHub release
195-
gh release create v${version} --title "v${version}" --notes "Release version ${version}"
196+
gh release create v${new_version} --title "v${new_version}" \
197+
--notes "Full Changelog: https://github.com/congzhangzh/webview_python/compare/v${old_version}...v${new_version}"
196198
```
197199

198200
3. **Monitor Release**

0 commit comments

Comments
 (0)