From 799d902767d8ea9ad195a090baab77cb1f2e892e Mon Sep 17 00:00:00 2001 From: Kelvin Muchiri Date: Fri, 28 Jun 2024 12:00:58 +0300 Subject: [PATCH] bump version to v4.3.1 --- CHANGES.rst | 7 +++++++ onadata/__init__.py | 2 +- setup.cfg | 2 +- 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index 9d0572b3e1..c0a2fcdc2c 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -3,6 +3,13 @@ Changelog for Onadata ``* represents releases that introduce new migrations`` +v4.3.1(2024-06-28) +------------------ +- Fix 0 integer, decimal values parsed as string when saving json + `PR #2621 ` + [@kelvin-muchiri] + + v4.3.0(2024-06-26) ------------------ - Separate ecr image build to use arm64 runner for arm64 builds diff --git a/onadata/__init__.py b/onadata/__init__.py index 51ab971548..c9932d2532 100644 --- a/onadata/__init__.py +++ b/onadata/__init__.py @@ -6,7 +6,7 @@ """ from __future__ import absolute_import, unicode_literals -__version__ = "4.3.0" +__version__ = "4.3.1" # This will make sure the app is always imported when diff --git a/setup.cfg b/setup.cfg index e611b85adc..0ff9bd4420 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = onadata -version = 4.3.0 +version = 4.3.1 description = Collect Analyze and Share Data long_description = file: README.rst long_description_content_type = text/x-rst