From 8ef611a1cb52c942e93faf6aaac6d0cf9eb6c567 Mon Sep 17 00:00:00 2001 From: Andrew-Chen-Wang Date: Wed, 3 Nov 2021 13:04:38 -0400 Subject: [PATCH] Bump vesrion to 2.4.4 --- .coveragerc | 11 +++++++++++ CHANGELOG.rst | 6 ++++++ cachalot/__init__.py | 2 +- 3 files changed, 18 insertions(+), 1 deletion(-) diff --git a/.coveragerc b/.coveragerc index 321e5ca..5df8a0d 100644 --- a/.coveragerc +++ b/.coveragerc @@ -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: + diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 45ce3dc..6976022 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,6 +1,12 @@ What’s 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 ----- diff --git a/cachalot/__init__.py b/cachalot/__init__.py index 826e376..bcf1ab2 100644 --- a/cachalot/__init__.py +++ b/cachalot/__init__.py @@ -1,4 +1,4 @@ -VERSION = (2, 4, 3) +VERSION = (2, 4, 4) __version__ = ".".join(map(str, VERSION)) try: