From c8c0ac94bdb1df8950e711365993beb7de6d0b3f Mon Sep 17 00:00:00 2001 From: Kelvin Muchiri Date: Thu, 19 Oct 2023 16:08:00 +0300 Subject: [PATCH] bump version to v3.14.2 (#2491) --- CHANGES.rst | 10 ++++++++++ onadata/__init__.py | 2 +- setup.cfg | 2 +- 3 files changed, 12 insertions(+), 2 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index 136a8b2eb8..2dcd06d88a 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -3,6 +3,16 @@ Changelog for Onadata ``* represents releases that introduce new migrations`` +v3.14.2(2023-10-19) +------------------- + +- Gracefully handle empty geoshapes and geotraces in data + `PR #2489 ` + [@KipSigei] +- Save XML to JSON data in pre-save + `PR #2486 ` + [@kelvin-muchiri] + v3.14.1(2023-10-09) ------------------- - Rebuilding to pick the latest google export changes. diff --git a/onadata/__init__.py b/onadata/__init__.py index ee168c510b..0e55931c9c 100644 --- a/onadata/__init__.py +++ b/onadata/__init__.py @@ -6,7 +6,7 @@ """ from __future__ import absolute_import, unicode_literals -__version__ = "3.14.1" +__version__ = "3.14.2" # This will make sure the app is always imported when diff --git a/setup.cfg b/setup.cfg index c3e3832111..8f496a9d9c 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = onadata -version = 3.14.1 +version = 3.14.2 description = Collect Analyze and Share Data long_description = file: README.rst long_description_content_type = text/x-rst