Skip to content

Commit

Permalink
Bump version to 1.1.0 and add note in CHANGELOG
Browse files Browse the repository at this point in the history
  • Loading branch information
David-Wobrock committed May 19, 2019
1 parent 9d5f16c commit 42a83f1
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
2 changes: 1 addition & 1 deletion django_migration_linter/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -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__)

0 comments on commit 42a83f1

Please sign in to comment.