Skip to content

Commit

Permalink
Bump to 2.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
David-Wobrock committed Jun 20, 2020
1 parent b381661 commit e86f8a7
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
## 2.3.0

* Handle making a column NOT NULL with a Django default value as backward incompatible.
This should have been the case from the beginning, but it was not.
When one uses the `django-add-default-value` lib, the operation should still be compatible.
* Improve behaviour of the `--include-migrations-from` option.
When the given filename is missplelled, fail instead of linting all migrations.
When the file is empty, lint no migrations instead of linting all migrations.
* Update libraries used for testing (`tox`, `flake8`, etc.)

## 2.2.2

* Don't pin dependencies but only define minimal versions
Expand Down
2 changes: 1 addition & 1 deletion django_migration_linter/constants.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from appdirs import user_cache_dir

__version__ = "2.2.2"
__version__ = "2.3.0"

DEFAULT_CACHE_PATH = user_cache_dir("django-migration-linter", version=__version__)

Expand Down

0 comments on commit e86f8a7

Please sign in to comment.