diff --git a/README.md b/README.md index 1f64ae1..16363ac 100644 --- a/README.md +++ b/README.md @@ -138,7 +138,7 @@ poetry run pytest ## Changelog -#### `main` (unreleased) +#### 7.0 (2024-07-07) - Better default sorting of `choices` ([#116](https://github.com/mfogel/django-timezone-field/issues/116)), ([#123](https://github.com/mfogel/django-timezone-field/issues/123)) - Convert string value to timezone object immediately on creation/assignment. diff --git a/pyproject.toml b/pyproject.toml index 1f28390..b027b9c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -14,7 +14,7 @@ line_length = 120 [tool.poetry] name = "django-timezone-field" -version = "6.1.0" +version = "7.0" description = "A Django app providing DB, form, and REST framework fields for zoneinfo and pytz timezone objects." license = "BSD-2-Clause" authors = ["Mike Fogel "] diff --git a/timezone_field/__init__.py b/timezone_field/__init__.py index e5055aa..7a75607 100644 --- a/timezone_field/__init__.py +++ b/timezone_field/__init__.py @@ -1,5 +1,5 @@ from timezone_field.fields import TimeZoneField from timezone_field.forms import TimeZoneFormField -__version__ = "6.1.0" +__version__ = "7.0" __all__ = ["TimeZoneField", "TimeZoneFormField"]