diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index fa00874..9916b11 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -3,7 +3,7 @@ repos: - repo: https://github.com/astral-sh/ruff-pre-commit - rev: v0.5.7 + rev: v0.6.4 hooks: # Run the Ruff linter. - id: ruff @@ -27,7 +27,7 @@ repos: stages: [ push ] - repo: https://github.com/adamchainz/django-upgrade - rev: 1.20.0 + rev: 1.21.0 hooks: - id: django-upgrade args: [--target-version, "4.2"] diff --git a/CHANGES.md b/CHANGES.md index 35e902d..3432b81 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,5 +1,8 @@ # Changelog +* *2.3.2* (2024-09-11) + * Fixed package name + * *2.3.1* (2024-08-12) * Fixed test matrix diff --git a/django_pony_express/__init__.py b/django_pony_express/__init__.py index e3f5c15..0d2f858 100644 --- a/django_pony_express/__init__.py +++ b/django_pony_express/__init__.py @@ -1,3 +1,3 @@ """Class-based emails including a test suite for Django""" -__version__ = "2.3.1" +__version__ = "2.3.2" diff --git a/pyproject.toml b/pyproject.toml index 9a40296..cde2baf 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -3,7 +3,7 @@ requires = ["flit_core>=3.4"] build-backend = "flit_core.buildapi" [project] -name = "django_pony_express" +name = "django-pony-express" authors = [ {'name' = 'Ambient Digital', 'email' = 'hello@ambient.digital'}, ]