diff --git a/django_yubin/version.py b/django_yubin/version.py index 56916ce..cb93692 100644 --- a/django_yubin/version.py +++ b/django_yubin/version.py @@ -1,2 +1,2 @@ -VERSION = (2, 0, 4) +VERSION = (2, 0, 5) __version__ = '.'.join([str(part) for part in VERSION]) diff --git a/docs/changelog.rst b/docs/changelog.rst index c5a4d80..ec4cf4c 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -5,6 +5,13 @@ This project adheres to `Semantic Versioning `_. +[2.0.5] - 2024-06-21 +-------------------- + +Fixed +^^^^^ +* Use ``BigAutoField`` and migrate all existing auto fields to it. This avoids generating a new migration in projects that use ``settings.DEFAULT_AUTO_FIELD = "django.db.models.BigAutoField"``. + [2.0.4] - 2024-05-02 --------------------