diff --git a/CHANGES.rst b/CHANGES.rst index 514da80ef8..2b996bc351 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -3,6 +3,11 @@ Changelog for Onadata ``* represents releases that introduce new migrations`` +v4.7.1(2024-09-16) +- Use chunked queryset when iterating queryset + `PR #2701 ` + [@kelvin-muchiri] + v4.7.0(2024-09-16) ------------------ - Add logging to project view page: add why we get 400 in log diff --git a/onadata/__init__.py b/onadata/__init__.py index d5579eb743..739d006834 100644 --- a/onadata/__init__.py +++ b/onadata/__init__.py @@ -6,7 +6,7 @@ """ from __future__ import absolute_import, unicode_literals -__version__ = "4.7.0" +__version__ = "4.7.1" # This will make sure the app is always imported when diff --git a/setup.cfg b/setup.cfg index 37cf5af2a4..f44fee043a 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = onadata -version = 4.7.0 +version = 4.7.1 description = Collect Analyze and Share Data long_description = file: README.rst long_description_content_type = text/x-rst