Skip to content

Commit

Permalink
v1.0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
Ronny Vedrilla committed Oct 31, 2023
1 parent be0d5f1 commit f73472e
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

* *1.0.4* (2023-10-31)
* Added `default_auto_field` to app config
* Linting and test fixes

* *1.0.3* (2023-10-30)
* Changed django migration table clean-up to delete everything to avoid issue with dependencies

Expand Down
2 changes: 1 addition & 1 deletion django_migration_zero/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@
Holistic implementation of "migration zero" pattern for Django covering local changes and in-production database adjustments.
"""

__version__ = '1.0.3'
__version__ = '1.0.4'
1 change: 1 addition & 0 deletions django_migration_zero/apps.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,4 @@
class MigrationZeroConfig(AppConfig):
name = "django_migration_zero"
verbose_name = _("Migration Zero Configuration")
default_auto_field = "django.db.models.AutoField"

0 comments on commit f73472e

Please sign in to comment.