diff --git a/CHANGES.rst b/CHANGES.rst index c49b95d5cb..f5418931f2 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -3,7 +3,14 @@ Changelog for Onadata ``* represents releases that introduce new migrations`` +v3.18.2(2024-02-23) +------------------- +- Improve perfomance of /status endpoint + `PR #2551 ` + [@FrankApiyo] + v3.18.1(2024-02-21) +------------------- - Fix bug invalid endpoint when fetching media files `PR #2551 ` [@kelvin-muchiri] diff --git a/onadata/__init__.py b/onadata/__init__.py index c9f6a1a451..101038e5e4 100644 --- a/onadata/__init__.py +++ b/onadata/__init__.py @@ -6,7 +6,7 @@ """ from __future__ import absolute_import, unicode_literals -__version__ = "3.18.1" +__version__ = "3.18.2" # This will make sure the app is always imported when diff --git a/setup.cfg b/setup.cfg index b7f5fd5242..91d615cd1a 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = onadata -version = 3.18.1 +version = 3.18.2 description = Collect Analyze and Share Data long_description = file: README.rst long_description_content_type = text/x-rst