diff --git a/CHANGELOG.md b/CHANGELOG.md index 164abe92..a1b52137 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -## 4.1.0 (unreleased) +## 4.1.0 - Allow configuring logging for `makemigrations` command and unify behaviour with `lintmigrations` (issue #207) - Adapt `--warnings-as-errors` option to allow selecting some migration tests only (issue #201) diff --git a/django_migration_linter/constants.py b/django_migration_linter/constants.py index 23a6af0e..f0a7fbb7 100644 --- a/django_migration_linter/constants.py +++ b/django_migration_linter/constants.py @@ -1,6 +1,6 @@ from appdirs import user_cache_dir -__version__ = "4.0.0" +__version__ = "4.1.0" DEFAULT_CACHE_PATH = user_cache_dir("django-migration-linter", version=__version__)