Skip to content

Commit

Permalink
Bump to version 1.2.0 and update CHANGELOG.md
Browse files Browse the repository at this point in the history
  • Loading branch information
David-Wobrock committed Jul 10, 2019
1 parent c0d33dd commit e93d4ec
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
## 1.2.0

* Add `--unapplied-migrations` and `--applied-migrations` mutually exclusive options
in order to respectively lint only unapplied or applied migrations.
* When loading migration starting from a git ref, cross the found migrations
with the currently loaded migrations in the project.
* Add `--project-root-path` which allows to specify the root path
which is used for finding the `.git` folder. (thanks to @linuxmaniac)

## 1.1.0

* Improve speed of ignored migration through the `IgnoreMigration` operation.
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.1.0"
__version__ = "1.2.0"

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

0 comments on commit e93d4ec

Please sign in to comment.