From e86f8a7df25fcd2b8ceb8a017cbeca0bbf80b8f8 Mon Sep 17 00:00:00 2001 From: David Wobrock Date: Sat, 20 Jun 2020 18:09:05 +0200 Subject: [PATCH] Bump to 2.3.0 --- CHANGELOG.md | 10 ++++++++++ django_migration_linter/constants.py | 2 +- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index bcc47ade..13b91deb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/django_migration_linter/constants.py b/django_migration_linter/constants.py index 98855bf4..c9752eba 100644 --- a/django_migration_linter/constants.py +++ b/django_migration_linter/constants.py @@ -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__)