Skip to content

Commit

Permalink
Release v5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
mfogel committed Jun 18, 2023
1 parent 46bffcf commit bbbc2b4
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 @@ -131,7 +131,7 @@ poetry run pytest

## Changelog

#### `main` (unreleased)
#### 5.1 (2023-06-18)

- Add django as a dependency of this package, with correct version constraints
([#90](https://github.com/mfogel/django-timezone-field/issues/90))
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 = "5.0"
version = "5.1"
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__ = "5.0"
__version__ = "5.1"
__all__ = ["TimeZoneField", "TimeZoneFormField"]

0 comments on commit bbbc2b4

Please sign in to comment.