From b77f86e1c8ff2906d40393f27ade2646eaba981a Mon Sep 17 00:00:00 2001 From: Kipchirchir Sigei Date: Mon, 3 Jun 2024 13:31:21 +0300 Subject: [PATCH] Tag release v4.2.0 Signed-off-by: Kipchirchir Sigei --- CHANGES.rst | 21 +++++++++++++++++++-- onadata/__init__.py | 2 +- setup.cfg | 2 +- 3 files changed, 21 insertions(+), 4 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index 6640c285a4..62ba3f4286 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -3,9 +3,26 @@ Changelog for Onadata ``* represents releases that introduce new migrations`` -Next release -------------- +v4.1.0(2024-06-03) +------------------ +- Add support for Entities + `PR #2504 ` + [@kelvin-muchiri] +- Optimize attachment xform migration + `PR #2599 ` + [@kelvin-muchiri] +- Fix exception thrown when deleting export + `PR #2600 ` + [@kelvin-muchiri] +- Fix merged dataset permissions not applied on share + `PR #2598 ` + [@kelvin-muchiri] - Rebuild docker image with pyenv and on Ubuntu 22.04 runtime image. + `PR #2597 ` + [@ukanga] +- Set permissions for merged dataset asynchronously + `PR #2600 ` + [@kelvin-muchiri] v4.1.0(2024-05-03) ------------------ diff --git a/onadata/__init__.py b/onadata/__init__.py index b5b0237a59..94769c0d94 100644 --- a/onadata/__init__.py +++ b/onadata/__init__.py @@ -6,7 +6,7 @@ """ from __future__ import absolute_import, unicode_literals -__version__ = "4.1.0" +__version__ = "4.2.0" # This will make sure the app is always imported when diff --git a/setup.cfg b/setup.cfg index 0db2a0fa58..ba9e026036 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = onadata -version = 4.1.0 +version = 4.2.0 description = Collect Analyze and Share Data long_description = file: README.rst long_description_content_type = text/x-rst