diff --git a/pyproject.toml b/pyproject.toml index 6fc3b98..492280d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "hatchling.build" [project] name = "django-postcode-lookup" -version = "1.0.1" +version = "2.0.0.alpha.0" description = "Pluggable postcode lookup endpoint" readme = "README.md" license = { file = "LICENSE" } @@ -14,7 +14,7 @@ authors = [ ] keywords = ["postcode", "api", "validation"] classifiers = [ - "Development Status :: 5 - Production/Stable", + "Development Status :: 4 - Beta", "Environment :: Web Environment", "Framework :: Django", "Framework :: Django :: 5.2", @@ -25,6 +25,7 @@ classifiers = [ "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", "Programming Language :: Python :: 3.13", + "Programming Language :: Python :: 3.14", ] dependencies = [ "Django>=5.2", @@ -57,7 +58,7 @@ testpaths = ["tests"] [tool.ruff] line-length = 99 -target-version = "py310" +target-version = "py314" [tool.ruff.lint] select = [ @@ -77,7 +78,7 @@ mccabe.max-complexity = 10 convention = "pep257" [tool.mypy] -python_version = "3.10" +python_version = "3.14" check_untyped_defs = true ignore_missing_imports = true no_implicit_optional = true diff --git a/src/django_postcode_lookup/__init__.py b/src/django_postcode_lookup/__init__.py index 8afdccd..2acc29c 100644 --- a/src/django_postcode_lookup/__init__.py +++ b/src/django_postcode_lookup/__init__.py @@ -2,6 +2,6 @@ # major.minor.patch.release.number # release must be one of alpha, beta, rc, or final -VERSION = (1, 0, 1, "final", 1) +VERSION = (2, 0, 0, "alpha", 0) __version__ = get_version(VERSION)