diff --git a/CHANGES.rst b/CHANGES.rst index f5418931f2..8790e85fc4 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -3,6 +3,21 @@ Changelog for Onadata ``* represents releases that introduce new migrations`` +v3.19.0(2024-03-26) +------------------- +- Security Remediations + `PR #2569 ` + [@KipSigei] +- Add Instance History indexing to checksum & uuid fields + `PR #2564 ` + [@KipSigei] +- Add migration to update old enketo urls + `PR #2552 ` + [@ciremusyoka] +- Ignore child questions of grouped sections within repeating sections during CSV export + `PR #2559 ` + [@kelvin-muchiri] + v3.18.2(2024-02-23) ------------------- - Improve perfomance of /status endpoint diff --git a/onadata/__init__.py b/onadata/__init__.py index 101038e5e4..82441273fd 100644 --- a/onadata/__init__.py +++ b/onadata/__init__.py @@ -6,7 +6,7 @@ """ from __future__ import absolute_import, unicode_literals -__version__ = "3.18.2" +__version__ = "3.19.0" # This will make sure the app is always imported when diff --git a/setup.cfg b/setup.cfg index 472679f037..70a7bc93e6 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = onadata -version = 3.18.2 +version = 3.19.0 description = Collect Analyze and Share Data long_description = file: README.rst long_description_content_type = text/x-rst