Skip to content

Commit dd59cb5

Browse files
Merge pull request #92 from pytest-dev/release-1.0.0
Release 1.0.0
2 parents 38c59cc + 65300b4 commit dd59cb5

3 files changed

Lines changed: 8 additions & 8 deletions

File tree

.github/workflows/deploy.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -43,9 +43,9 @@ jobs:
4343
with:
4444
attestations: true
4545

46-
- name: Push tag
46+
- name: GitHub Release
47+
env:
48+
GH_TOKEN: ${{ github.token }}
4749
run: |
48-
git config user.name "pytest bot"
49-
git config user.email "pytestbot@gmail.com"
50-
git tag --annotate --message=v${{ github.event.inputs.version }} v${{ github.event.inputs.version }} ${{ github.sha }}
51-
git push origin v${{ github.event.inputs.version }}
50+
gh release create v${{ github.event.inputs.version }} --target=${{ github.ref_name }} --title v${{ github.event.inputs.version }}
51+
gh pr merge ${{ github.ref_name }} --merge

CHANGELOG.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
UNRELEASED
2-
----------
1+
1.0.0 (2025-11-11)
2+
------------------
33

44
* `#90 <https://github.com/pytest-dev/pytest-reportlog/issues/90>`_: Fix jsonl output for pytest subtests (introduced in pytest 9.0).
55
* Added official support for Python 3.12, 3.13, and 3.14.

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ keywords = [
2424
"pytest",
2525
]
2626
classifiers = [
27-
"Development Status :: 3 - Alpha",
27+
"Development Status :: 5 - Production/Stable",
2828
"Framework :: Pytest",
2929
"Intended Audience :: Developers",
3030
"License :: OSI Approved :: MIT License",

0 commit comments

Comments
 (0)