File tree Expand file tree Collapse file tree 1 file changed +8
-6
lines changed Expand file tree Collapse file tree 1 file changed +8
-6
lines changed Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ Python bindings for the webview library, allowing you to create desktop applicat
12
12
## Installation
13
13
14
14
``` bash
15
- pip install webview
15
+ pip install webview_python
16
16
```
17
17
18
18
## Usage
@@ -182,17 +182,19 @@ For maintainers who want to release a new version:
182
182
2 . ** Create Release**
183
183
``` bash
184
184
# Commit changes
185
- version=0.99.0
185
+ old_version=0.99.0
186
+ new_version=0.99.1
186
187
git add pyproject.toml
187
- git commit -m " Bump version to ${version } "
188
+ git commit -m " Bump version to ${new_version } "
188
189
git push origin main
189
190
190
191
# 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 }
193
194
194
195
# 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} "
196
198
```
197
199
198
200
3 . ** Monitor Release**
You can’t perform that action at this time.
0 commit comments