From 6fa567c5f17c67cf9b465e9cdf0fe4f3c44a1cf5 Mon Sep 17 00:00:00 2001 From: Kipchirchir Sigei Date: Wed, 26 Jun 2024 09:10:48 +0300 Subject: [PATCH] Tag release v4.3.0 Signed-off-by: Kipchirchir Sigei --- CHANGES.rst | 15 +++++++++++++++ onadata/__init__.py | 2 +- setup.cfg | 2 +- 3 files changed, 17 insertions(+), 2 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index 18b7371cd1..9d0572b3e1 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -3,6 +3,21 @@ Changelog for Onadata ``* represents releases that introduce new migrations`` +v4.3.0(2024-06-26) +------------------ +- Separate ecr image build to use arm64 runner for arm64 builds + `PR #2620 ` + [@kelvin-muchiri] +- Add Entity updates + `PR #2592 ` + [@kelvin-muchiri] +- Update messaging endpoint docs + `PR #2616 ` + [@KipSigei] +- Fix ValueError for User instance primary key in password validation + `PR #2613 ` + [@KipSigei] + v4.2.2(2024-06-06) ------------------ - Add support for merged dataset geojson format on endpoint /api/v1/data/ diff --git a/onadata/__init__.py b/onadata/__init__.py index 1e81ec7589..51ab971548 100644 --- a/onadata/__init__.py +++ b/onadata/__init__.py @@ -6,7 +6,7 @@ """ from __future__ import absolute_import, unicode_literals -__version__ = "4.2.2" +__version__ = "4.3.0" # This will make sure the app is always imported when diff --git a/setup.cfg b/setup.cfg index dfec5bba2b..e611b85adc 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = onadata -version = 4.2.2 +version = 4.3.0 description = Collect Analyze and Share Data long_description = file: README.rst long_description_content_type = text/x-rst