From 2cb42b420a626db94520776c9591335b1ab4817f Mon Sep 17 00:00:00 2001 From: Kelvin Muchiri Date: Wed, 21 Feb 2024 09:16:43 +0300 Subject: [PATCH] bump version to v3.18.1 (#2557) --- CHANGES.rst | 5 +++++ onadata/__init__.py | 2 +- setup.cfg | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index 162b0ef672..c49b95d5cb 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -3,6 +3,11 @@ Changelog for Onadata ``* represents releases that introduce new migrations`` +v3.18.1(2024-02-21) +- Fix bug invalid endpoint when fetching media files + `PR #2551 ` + [@kelvin-muchiri] + v3.18.0(2024-02-05) ------------------- - Fix SQL syntax error when grouping by select one diff --git a/onadata/__init__.py b/onadata/__init__.py index 3c9dc6e0cd..c9f6a1a451 100644 --- a/onadata/__init__.py +++ b/onadata/__init__.py @@ -6,7 +6,7 @@ """ from __future__ import absolute_import, unicode_literals -__version__ = "3.18.0" +__version__ = "3.18.1" # This will make sure the app is always imported when diff --git a/setup.cfg b/setup.cfg index f72a44fc49..b7f5fd5242 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = onadata -version = 3.18.0 +version = 3.18.1 description = Collect Analyze and Share Data long_description = file: README.rst long_description_content_type = text/x-rst