Bump vesrion to 2.4.4

This commit is contained in:
Andrew-Chen-Wang 2021-11-03 13:04:38 -04:00
parent 42af2e0126
commit 8ef611a1cb
3 changed files with 18 additions and 1 deletions

View file

@ -1,2 +1,13 @@
[run]
omit = */tests/*
[report]
exclude_lines =
pragma: no cover
pragma: nocover
def __repr__
if __name__ == .__main__.:
if TYPE_CHECKING:
except ImportError:

View file

@ -1,6 +1,12 @@
Whats new in django-cachalot?
==============================
2.4.4
-----
- Handle queryset implementations without lhs/rhs attribute (#204)
- (Internal) Omit additional unnecessary code in coverage
2.4.3
-----

View file

@ -1,4 +1,4 @@
VERSION = (2, 4, 3)
VERSION = (2, 4, 4)
__version__ = ".".join(map(str, VERSION))
try: