Skip to content

Commit

Permalink
v2.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
GitRon committed Aug 12, 2024
1 parent 7f41ab8 commit 93a11ef
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
strategy:
matrix:
python-version: ['3.9', '3.10', '3.11', '3.12', ]
django-version: ['42', '50', ]
django-version: ['42', '50', '51', ]

exclude:
- python-version: '3.9'
Expand Down
6 changes: 3 additions & 3 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

repos:
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.5.2
rev: v0.5.7
hooks:
# Run the Ruff linter.
- id: ruff
Expand All @@ -20,14 +20,14 @@ repos:
files: '(?:README\.md|docs\/.*\.(?:md|rst))'

- repo: https://github.com/asottile/pyupgrade
rev: v3.16.0
rev: v3.17.0
hooks:
- id: pyupgrade
args: [ --py39-plus ]
stages: [ push ]

- repo: https://github.com/adamchainz/django-upgrade
rev: 1.19.0
rev: 1.20.0
hooks:
- id: django-upgrade
args: [--target-version, "4.2"]
Expand Down
3 changes: 3 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Changelog

* *2.3.0* (2024-08-12)
* Added Django 5.1 support

* *2.2.2* (2024-07-18)
* Added SECURITY.md
* Updated linters
Expand Down
2 changes: 1 addition & 1 deletion django_pony_express/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""Class-based emails including a test suite for Django"""

__version__ = "2.2.2"
__version__ = "2.3.0"
2 changes: 2 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ classifiers = [
"Framework :: Django",
"Framework :: Django :: 4.2",
"Framework :: Django :: 5.0",
"Framework :: Django :: 5.1",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License (GPL)",
"Natural Language :: English",
Expand Down Expand Up @@ -182,6 +183,7 @@ legacy_tox_ini = """
deps =
django42: Django==4.2.*
django50: Django==5.0.*
django51: Django==5.1.*
extras = dev,
commands =
coverage run -m pytest --ds settings tests
Expand Down

0 comments on commit 93a11ef

Please sign in to comment.