Skip to content

Commit e93d4ec

Browse files
committed
Bump to version 1.2.0 and update CHANGELOG.md
1 parent c0d33dd commit e93d4ec

2 files changed

Lines changed: 10 additions & 1 deletion

File tree

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
## 1.2.0
2+
3+
* Add `--unapplied-migrations` and `--applied-migrations` mutually exclusive options
4+
in order to respectively lint only unapplied or applied migrations.
5+
* When loading migration starting from a git ref, cross the found migrations
6+
with the currently loaded migrations in the project.
7+
* Add `--project-root-path` which allows to specify the root path
8+
which is used for finding the `.git` folder. (thanks to @linuxmaniac)
9+
110
## 1.1.0
211

312
* Improve speed of ignored migration through the `IgnoreMigration` operation.

django_migration_linter/constants.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@
1414

1515
from appdirs import user_cache_dir
1616

17-
__version__ = "1.1.0"
17+
__version__ = "1.2.0"
1818

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

0 commit comments

Comments
 (0)