From da78ea33d577f6a92e1ac997a3e60842fbccb702 Mon Sep 17 00:00:00 2001 From: James Bradshaw Date: Wed, 27 Aug 2025 01:18:34 -0500 Subject: [PATCH 1/2] release notes and version bump --- .github/workflows/release.yml | 6 ++---- CHANGELOG.md | 5 +++++ src/flask_githubapp/version.py | 2 +- 3 files changed, 8 insertions(+), 5 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 6ef9bf2..2d2dc6b 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -3,9 +3,7 @@ name: PyPI release -on: - release: - types: [published] +on: workflow_dispatch jobs: publish: @@ -31,6 +29,6 @@ jobs: --sdist --outdir dist/ - name: Publish distribution to PyPI - uses: pypa/gh-action-pypi-publish@master + uses: pypa/gh-action-pypi-publish@@release/v1 with: password: ${{ secrets.PYPI_API_TOKEN }} diff --git a/CHANGELOG.md b/CHANGELOG.md index 9cecf1b..33b3c67 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.4.0] + +### Added +- Support for Flask 3 (thanks @kuldeepk!) + ## [0.3.0] ### Changed diff --git a/src/flask_githubapp/version.py b/src/flask_githubapp/version.py index 0404d81..abeeedb 100644 --- a/src/flask_githubapp/version.py +++ b/src/flask_githubapp/version.py @@ -1 +1 @@ -__version__ = '0.3.0' +__version__ = '0.4.0' From e345a6fc13d6b9d14df1b2a81984ea815e6cf7b1 Mon Sep 17 00:00:00 2001 From: James Bradshaw Date: Wed, 27 Aug 2025 01:20:30 -0500 Subject: [PATCH 2/2] fix typo in publish --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 2d2dc6b..895f0c3 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -29,6 +29,6 @@ jobs: --sdist --outdir dist/ - name: Publish distribution to PyPI - uses: pypa/gh-action-pypi-publish@@release/v1 + uses: pypa/gh-action-pypi-publish@release/v1 with: password: ${{ secrets.PYPI_API_TOKEN }}