Skip to content

Commit

Permalink
Release v7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mfogel committed Jul 7, 2024
1 parent 060fd1b commit 36db865
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 <mike@fogel.ca>"]
Expand Down
2 changes: 1 addition & 1 deletion timezone_field/__init__.py
Original file line number Diff line number Diff line change
@@ -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"]

0 comments on commit 36db865

Please sign in to comment.