From 42a83f18a0216c5cff520989bf7213c848027daf Mon Sep 17 00:00:00 2001 From: David Wobrock Date: Sun, 19 May 2019 22:48:20 +0200 Subject: [PATCH] Bump version to 1.1.0 and add note in CHANGELOG --- CHANGELOG.md | 8 ++++++++ django_migration_linter/constants.py | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3730fe41..e9251c4c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +## 1.1.0 + +* Improve speed of ignored migration through the `IgnoreMigration` operation. +Instead of generating their SQL, we verify if the Operation class is present. +Thus we don't have to wait for the SQL generation. Also improves the caching strategy. + +Breaks some internal APIs, so minor update to 1.1.0. + ## 1.0.0 **Breaking changes** of the linter usage. The linter now is a Django management command. diff --git a/django_migration_linter/constants.py b/django_migration_linter/constants.py index 96245919..dd43d62d 100644 --- a/django_migration_linter/constants.py +++ b/django_migration_linter/constants.py @@ -14,6 +14,6 @@ from appdirs import user_cache_dir -__version__ = "1.0.0" +__version__ = "1.1.0" DEFAULT_CACHE_PATH = user_cache_dir("django-migration-linter", version=__version__)