Skip to content

Commit

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

* *1.0.6* (2023-11-06)
* Added "Alternatives" section to docs

* *1.0.5* (2023-11-03)
* Switched formatter from `black` to `ruff`

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.5"
__version__ = "1.0.6"
6 changes: 6 additions & 0 deletions docs/features/01_introduction.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,3 +35,9 @@ happen on your databases, no matter where they live and how you can access them.

* [“Migrations zero” or how to handle migrations on a large Django project, X. Dubuc, 2018](https://medium.com/@xavier.dubuc/migrations-zero-or-how-to-handle-migrations-on-a-large-django-project-643627938449)
* [How to Reset Migrations, V. Freitas, 2016](https://simpleisbetterthancomplex.com/tutorial/2016/07/26/how-to-reset-migrations.html)

## Alternatives

### [django-zeromigrations](https://pypi.org/project/django-zeromigrations/)

Implements the local cleanup quite verbosely, including a backup functionality. Lacks the CI/CD part, though.

0 comments on commit 8cb1492

Please sign in to comment.