You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- installed [`uv`](https://docs.astral.sh/uv/), and
206
+
- execute commands in the root of the repository.
207
+
208
+
Please replace `<VERSION>` with the version number of the package that you want to release (e.g. `0.2.0`).
209
+
210
+
#### PyPI
211
+
212
+
To release a new version on [PyPI](https://pypi.org/project/icostate/) please use the commands below:
213
+
214
+
```sh
215
+
uv version <VERSION>
216
+
export pyfocas_version="$(uv version --short)"
217
+
git commit -a -m "Release: Release version $pyfocas_version"
218
+
git tag "$pyfocas_version"
219
+
git push && git push --tags
220
+
```
221
+
222
+
#### GitHub
223
+
224
+
Open the [release notes](https://github.com/MyTooliT/pyfocas/doc/release) for the latest version and [create a new release](https://github.com/MyTooliT/pyfocas/releases/new):
225
+
226
+
1. Paste the release notes into the main text of the release web page
227
+
2. Insert the version number into the tag field
228
+
3. For the release title use “Version <VERSION>”, where `<VERSION>` specifies the version number (e.g. “Version 0.2”)
229
+
4. Click on “Publish Release”
230
+
231
+
**Note:** Alternatively you can also use the [`gh`](https://cli.github.com) command:
0 commit comments