From a1a05972c7702e3cb2901ddcf766d344bb5b8c8c Mon Sep 17 00:00:00 2001 From: Kipchirchir Sigei Date: Wed, 1 Feb 2023 11:00:38 +0300 Subject: [PATCH] Tag release v3.8.0 Signed-off-by: Kipchirchir Sigei --- CHANGES.rst | 27 +++++++++++++++++++++++++++ onadata/__init__.py | 2 +- setup.cfg | 2 +- 3 files changed, 29 insertions(+), 2 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index 46a6017427..5bc10bdb53 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -3,6 +3,33 @@ Changelog for Onadata ``* represents releases that introduce new migrations`` +v3.8.0(2023-02-01) +------------------ +- Ensure that the user row is selected alongside the Token + `PR #2362 `_ + [@FrankApiyo] +- Render filtered datasets and merged datasets as geojson + `PR #2360 `_ + [@FrankApiyo] +- Fix an issue where GPS Data within a group is not correctly extracted when group name is removed + `PR #2355 `_ + [@DavisRayM] +- Update setuptools & futures packages + `PR #2353 `_ + [@DavisRayM] +- Ensure external select to csv conversion works as expected + `PR #2349 `_ + [@DavisRayM] +- Return correct geojson for polygons and geotrace data + `PR #2348 `_ + [@FrankApiyo] +- Ensure Excel exports are in .xlsx format + `PR #2346 `_ + [@KipSigei] +- Ensure user profiles are created before building user permissions object + `PR #2344 `_ + [@KipSigei] + v3.7.1(2022-12-21) ------------------ diff --git a/onadata/__init__.py b/onadata/__init__.py index 8b7807004b..3be2c3baa7 100644 --- a/onadata/__init__.py +++ b/onadata/__init__.py @@ -6,7 +6,7 @@ """ from __future__ import absolute_import, unicode_literals -__version__ = "3.7.1" +__version__ = "3.8.0" # This will make sure the app is always imported when diff --git a/setup.cfg b/setup.cfg index 3e4247fd1c..704aa9fffc 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = onadata -version = 3.7.1 +version = 3.8.0 description = Collect Analyze and Share Data long_description = file: README.rst long_description_content_type = text/x-rst