From 4a83179de71f0d0cec976896a16a9a969b9c8ea9 Mon Sep 17 00:00:00 2001 From: Gianfranco Rossi Date: Fri, 24 Jan 2025 15:58:48 -0500 Subject: [PATCH] version bump v3.2.49 --- .github/workflows/pypi.yml | 2 ++ CHANGES.md | 4 +++- setup.py | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pypi.yml b/.github/workflows/pypi.yml index 2896020..760a2d7 100644 --- a/.github/workflows/pypi.yml +++ b/.github/workflows/pypi.yml @@ -8,6 +8,8 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 + - uses: actions/setup-python@v5 + - run: python -m pip install -U packaging - uses: casperdcl/deploy-pypi@v2 with: password: ${{ secrets.pypi_token }} diff --git a/CHANGES.md b/CHANGES.md index 4bc3b3a..ca6499c 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -16,10 +16,12 @@ ## Current Version - - 3.2.48 (2024-01-10): Update reporter.json and regexes.json + - 3.2.49 (2024-01-24): Update pypi github action workflow ## Past Versions + - 3.2.48 (2024-01-10): Update reporter.json and regexes.json + - 3.2.47 (2024-01-10): Update reporter.json - 3.2.46 (2024-12-04): Update reporter.json diff --git a/setup.py b/setup.py index ce1b747..f9c5a86 100644 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ from setuptools import find_packages, setup -VERSION = "3.2.48" +VERSION = "3.2.49" AUTHOR = "Mike Lissner" EMAIL = "mike@free.law" HERE = os.path.abspath(os.path.dirname(__file__))