From 8f9a8e5ab92407f6db58acfc3460abd8691c1130 Mon Sep 17 00:00:00 2001 From: Omer Bhatti Date: Mon, 30 Sep 2024 18:29:04 +0500 Subject: [PATCH] chore: bumped the version to 5.0.0 and updated CHANGELOG --- .github/workflows/ci.yml | 1 + .github/workflows/pypi-publish.yml | 2 +- CHANGELOG.md | 3 +++ freetextresponse/__init__.py | 2 +- setup.py | 1 + 5 files changed, 7 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c510c681..05b93f90 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -16,6 +16,7 @@ jobs: os: [ubuntu-20.04] python-version: - '3.11' + - '3.12' toxenv: [django42, quality, csslint, eslint, translations_validate] steps: diff --git a/.github/workflows/pypi-publish.yml b/.github/workflows/pypi-publish.yml index 142b77d0..8c5be905 100644 --- a/.github/workflows/pypi-publish.yml +++ b/.github/workflows/pypi-publish.yml @@ -15,7 +15,7 @@ jobs: - name: setup python uses: actions/setup-python@v3 with: - python-version: 3.11 + python-version: 3.12 - name: Install pip run: pip install -r requirements/pip.txt diff --git a/CHANGELOG.md b/CHANGELOG.md index 6613249f..e4fe07fc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Changelog +## Version 5.0.0 +* Added python 3.12 support. Dropped python 3.8 support. + ## Version 4.1.0 * Added python 3.11 support. Dropped django32 support. diff --git a/freetextresponse/__init__.py b/freetextresponse/__init__.py index 653038d8..03994428 100644 --- a/freetextresponse/__init__.py +++ b/freetextresponse/__init__.py @@ -4,4 +4,4 @@ present in order for the student to receive credit. """ -__version__ = "4.1.0" +__version__ = "5.0.0" diff --git a/setup.py b/setup.py index 307ccd2d..92dfb441 100644 --- a/setup.py +++ b/setup.py @@ -147,6 +147,7 @@ def is_requirement(line): 'Programming Language :: JavaScript', 'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3.11', + 'Programming Language :: Python :: 3.12', 'Framework :: Django', 'Framework :: Django :: 4.2', 'Topic :: Education',