Skip to content

Commit

Permalink
minor fix
Browse files Browse the repository at this point in the history
  • Loading branch information
congzhangzh committed Nov 3, 2024
1 parent 1a71d6b commit f780097
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Python bindings for the webview library, allowing you to create desktop applicat
## Installation

```bash
pip install webview
pip install webview_python
```

## Usage
Expand Down Expand Up @@ -182,17 +182,19 @@ For maintainers who want to release a new version:
2. **Create Release**
```bash
# Commit changes
version=0.99.0
old_version=0.99.0
new_version=0.99.1
git add pyproject.toml
git commit -m "Bump version to ${version}"
git commit -m "Bump version to ${new_version}"
git push origin main

# Create and push tag
git tag v${version}
git push origin v${version}
git tag v${new_version}
git push origin v${new_version}

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

3. **Monitor Release**
Expand Down

0 comments on commit f780097

Please sign in to comment.