diff --git a/CHANGES.rst b/CHANGES.rst index 2b996bc351..427e7dc0d1 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -3,7 +3,17 @@ Changelog for Onadata ``* represents releases that introduce new migrations`` +v4.8.0(2024-09-23) +------------------ +- Update ona-oidc version to 1.1.1 + `PR #2708 ` + [@FrankApiyo] +- Add support for OR operation data filter for date fields + `PR #2701 ` + [@kelvin-muchiri] + v4.7.1(2024-09-16) +------------------ - Use chunked queryset when iterating queryset `PR #2701 ` [@kelvin-muchiri] diff --git a/onadata/__init__.py b/onadata/__init__.py index 739d006834..e3ad6895bd 100644 --- a/onadata/__init__.py +++ b/onadata/__init__.py @@ -6,7 +6,7 @@ """ from __future__ import absolute_import, unicode_literals -__version__ = "4.7.1" +__version__ = "4.8.0" # This will make sure the app is always imported when diff --git a/setup.cfg b/setup.cfg index f44fee043a..67fd31b8a0 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = onadata -version = 4.7.1 +version = 4.8.0 description = Collect Analyze and Share Data long_description = file: README.rst long_description_content_type = text/x-rst