From a2baf9aaaf27b139bf08261708321706ecd3e091 Mon Sep 17 00:00:00 2001 From: Kipchirchir Sigei Date: Mon, 6 Nov 2023 21:05:15 +0300 Subject: [PATCH] Tag release v3.14.4 Signed-off-by: Kipchirchir Sigei --- CHANGES.rst | 12 ++++++++++++ onadata/__init__.py | 2 +- setup.cfg | 2 +- 3 files changed, 14 insertions(+), 2 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index dc52891a2e..65053d1c52 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -3,6 +3,18 @@ Changelog for Onadata ``* represents releases that introduce new migrations`` +v3.14.4(2023-11-07) +------------------- +- Bump oidc version to v1.0.3 + `PR #2501 ` + [@kelvin-muchiri] +- Improve performance for attachments xform meta permissions check + `PR #2499 ` + [@KipSigei] +- Create user auth token if doesn't exist upon retrieval + `PR #2496 ` + [@ciremusyoka] + v3.14.3(2023-10-30) ------------------- - Stream response on endpoint //xformsManifest/ diff --git a/onadata/__init__.py b/onadata/__init__.py index 1f42f0543d..f4743f83e3 100644 --- a/onadata/__init__.py +++ b/onadata/__init__.py @@ -6,7 +6,7 @@ """ from __future__ import absolute_import, unicode_literals -__version__ = "3.14.3" +__version__ = "3.14.4" # This will make sure the app is always imported when diff --git a/setup.cfg b/setup.cfg index 454fdc32cb..c12b7fb51e 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = onadata -version = 3.14.3 +version = 3.14.4 description = Collect Analyze and Share Data long_description = file: README.rst long_description_content_type = text/x-rst