From 845462b0fdea5c930ed8878971962059c08b0523 Mon Sep 17 00:00:00 2001 From: Bruno Oliveira Date: Tue, 11 Nov 2025 12:56:57 -0300 Subject: [PATCH 1/3] Release 1.0.0 --- CHANGELOG.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index b2daf32..c1067e6 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,5 +1,5 @@ -UNRELEASED ----------- +1.0.0 (2025-11-11) +------------------ * `#90 `_: Fix jsonl output for pytest subtests (introduced in pytest 9.0). * Added official support for Python 3.12, 3.13, and 3.14. From dbeb7ca89cd63a9824c8f2c196225a455fe218b1 Mon Sep 17 00:00:00 2001 From: Bruno Oliveira Date: Tue, 11 Nov 2025 12:57:55 -0300 Subject: [PATCH 2/3] Update classifiers to production/stable This has been around long enough that we don't expect any major changes. --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 07d5b73..576b44e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -24,7 +24,7 @@ keywords = [ "pytest", ] classifiers = [ - "Development Status :: 3 - Alpha", + "Development Status :: 5 - Production/Stable", "Framework :: Pytest", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", From 65300b4167a2326d0be0dc8a95062edec3480620 Mon Sep 17 00:00:00 2001 From: Bruno Oliveira Date: Tue, 11 Nov 2025 13:01:47 -0300 Subject: [PATCH 3/3] Publish GitHub release --- .github/workflows/deploy.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 04c06d7..ae6e850 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -43,9 +43,9 @@ jobs: with: attestations: true - - name: Push tag + - name: GitHub Release + env: + GH_TOKEN: ${{ github.token }} run: | - git config user.name "pytest bot" - git config user.email "pytestbot@gmail.com" - git tag --annotate --message=v${{ github.event.inputs.version }} v${{ github.event.inputs.version }} ${{ github.sha }} - git push origin v${{ github.event.inputs.version }} + gh release create v${{ github.event.inputs.version }} --target=${{ github.ref_name }} --title v${{ github.event.inputs.version }} + gh pr merge ${{ github.ref_name }} --merge