diff --git a/CHANGES.rst b/CHANGES.rst index b3ae317372..ff624c70e0 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -3,6 +3,15 @@ Changelog for Onadata ``* represents releases that introduce new migrations`` +v3.17.4(2024-02-05) +------------------- +- Fix SQL syntax error when grouping by select one + `PR #2549 ` + [@KipSigei] +- Process Instance metadata from light tasks synchronously + `PR #2547 ` + [@kelvin-muchiri] + v3.17.3(2024-01-15) ------------------- - Explicitly set AWS_S3_ENDPOINT_URL in boto3 configs diff --git a/onadata/__init__.py b/onadata/__init__.py index 3f6028d678..268271b7a1 100644 --- a/onadata/__init__.py +++ b/onadata/__init__.py @@ -6,7 +6,7 @@ """ from __future__ import absolute_import, unicode_literals -__version__ = "3.17.3" +__version__ = "3.17.4" # This will make sure the app is always imported when diff --git a/setup.cfg b/setup.cfg index f0e3f95f1a..10087f49ba 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = onadata -version = 3.17.3 +version = 3.17.4 description = Collect Analyze and Share Data long_description = file: README.rst long_description_content_type = text/x-rst