Skip to content

Commit 5a00e26

Browse files
committed
update version and changelog
1 parent 398d5f1 commit 5a00e26

File tree

4 files changed

+15
-9
lines changed

4 files changed

+15
-9
lines changed

.github/workflows/release.yml

+5-8
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
fetch-depth: 0
2626
- uses: actions/setup-python@v5
2727
with:
28-
python-version: '3.12'
28+
python-version: "3.12"
2929

3030
- if: ${{ github.ref == 'refs/heads/main' }}
3131
run: |
@@ -94,16 +94,18 @@ jobs:
9494
path: dist/*.tar.gz
9595

9696
upload:
97+
if: ${{ github.ref == 'refs/heads/main' }}
9798
needs: [wheels, sdist]
9899
runs-on: ubuntu-latest
100+
99101
environment:
100102
name: pypi
101103
url: https://pypi.org/project/iminuit/
102104

103105
permissions:
104106
id-token: write
105107
attestations: write
106-
if: ${{ github.ref == 'refs/heads/main' }}
108+
107109
steps:
108110
- uses: actions/download-artifact@v4
109111
with:
@@ -116,15 +118,10 @@ jobs:
116118
with:
117119
subject-path: "dist/iminuit-*"
118120

119-
- uses: pypa/gh-action-pypi-publish@release/v1
120-
with:
121-
user: __token__
122-
password: ${{secrets.pypi_password}}
123-
124121
release:
122+
if: ${{ github.ref == 'refs/heads/main' }}
125123
needs: [release_check, upload]
126124
runs-on: ubuntu-latest
127-
if: ${{ github.ref == 'refs/heads/main' }}
128125
steps:
129126
- uses: actions/checkout@v4
130127
- uses: softprops/action-gh-release@v2

doc/changelog.rst

+7
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,13 @@
55
Changelog
66
=========
77

8+
2.30.2 (October 12, 2024)
9+
-------------------------
10+
- Fix docs (`#1052 <https://github.com/scikit-hep/iminuit/pull/1052>`_)
11+
- Fix: use old license text (`#1050 <https://github.com/scikit-hep/iminuit/pull/1050>`_)
12+
- Chore: some minor updates (`#1051 <https://github.com/scikit-hep/iminuit/pull/1051>`_)
13+
- Ci: use official gha for uv (`#1048 <https://github.com/scikit-hep/iminuit/pull/1048>`_)
14+
815
2.30.1 (October 08, 2024)
916
-------------------------
1017
- Ci: add 3.13 wheels (`#1047 <https://github.com/scikit-hep/iminuit/pull/1047>`_)

doc/update_changelog.py

+2
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,8 @@
6060
for x in git_log:
6161
if x.startswith("[pre-commit.ci]"):
6262
continue
63+
if x.lower().startswith("bump actions"):
64+
continue
6365
x = re.sub(
6466
"#([0-9]+)", r"`#\1 <https://github.com/scikit-hep/iminuit/pull/\1>`_", x
6567
)

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ build-backend = "scikit_build_core.build"
55
[project]
66
name = "iminuit"
77
description = "Jupyter-friendly Python frontend for MINUIT2 in C++"
8-
version = "2.30.1"
8+
version = "2.30.2"
99
maintainers = [{ name = "Hans Dembinski", email = "hans.dembinski@gmail.com" }]
1010
readme = "README.rst"
1111
requires-python = ">=3.9"

0 commit comments

Comments
 (0)