From 2713f21dedbef02a6e209ddd2ce8f07ba49ad164 Mon Sep 17 00:00:00 2001 From: Kelvin Muchiri Date: Tue, 6 Feb 2024 09:45:55 +0300 Subject: [PATCH] Tag release v3.18.0 (#2550) * tag release v3.17.4 * bump version to 3.18.0 --- CHANGES.rst | 9 +++++++++ onadata/__init__.py | 2 +- setup.cfg | 2 +- 3 files changed, 11 insertions(+), 2 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index b3ae317372..162b0ef672 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -3,6 +3,15 @@ Changelog for Onadata ``* represents releases that introduce new migrations`` +v3.18.0(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..3c9dc6e0cd 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.18.0" # This will make sure the app is always imported when diff --git a/setup.cfg b/setup.cfg index f0e3f95f1a..f72a44fc49 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = onadata -version = 3.17.3 +version = 3.18.0 description = Collect Analyze and Share Data long_description = file: README.rst long_description_content_type = text/x-rst