diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 49f1db65..f2074fc5 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,3 +1,9 @@ +django_errors 2.3.14 (2026-08-09) +================================= + +No significant changes. + + django_errors 2.3.13 (2026-07-14) ================================= diff --git a/news/process/20260809-lock-upgrade.rst b/news/process/20260809-lock-upgrade.rst new file mode 100644 index 00000000..61a5b1df --- /dev/null +++ b/news/process/20260809-lock-upgrade.rst @@ -0,0 +1 @@ +Automated runtime lock file upgrades (2026-08-09). diff --git a/pyproject.toml b/pyproject.toml index 442eec38..934c23de 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -161,7 +161,7 @@ package = "django_errors" package_dir = "src" filename = "CHANGELOG.rst" directory = "news/" -version = "2.3.13" +version = "2.3.14" issue_format = "`#{issue} `_" type = [ { name = "Process", directory = "process", showcontent = true }, @@ -174,7 +174,7 @@ type = [ ] [tool.bumpversion] -current_version = "2.3.13" +current_version = "2.3.14" allow_dirty = true [[tool.bumpversion.files]] diff --git a/src/django_errors/__init__.py b/src/django_errors/__init__.py index d377f20f..bdf4c3b9 100644 --- a/src/django_errors/__init__.py +++ b/src/django_errors/__init__.py @@ -2,7 +2,7 @@ See PEP 386 (https://peps.python.org/pep-0386/) """ -__version__ = "2.3.13" +__version__ = "2.3.14" __version_info__ = tuple( int(i) if i.isdigit() else i for i in __version__.split(".") )