From 58ec92eee52124b775ee3ce7c6e1621cc8600c79 Mon Sep 17 00:00:00 2001 From: Kelvin Muchiri Date: Thu, 30 Jan 2025 10:41:44 +0300 Subject: [PATCH] bump version to v4.12.0 --- 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 9e431fd5b4..0aeb79d7f1 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -3,6 +3,18 @@ Changelog for Onadata ``* represents releases that introduce new migrations`` +v4.12.0(2025-01-30) +------------------- +- Fix XForm permissions not applied after transferring project via management command + `PR #2770 ` + [@kelvin-muchiri] +- Ensure projects are returned in the reverse order of creation + `PR #2768 ` + [@FrankApiyo] +- Optimise CSV export by saving columns + `PR #2762 ` + [@kelvin-muchiri] + v4.11.2(2025-01-22) ------------------- - Fix exception Instance.DoesNotExist when registering Instance repeats diff --git a/onadata/__init__.py b/onadata/__init__.py index ba26adc0b1..eda0a1bb7a 100644 --- a/onadata/__init__.py +++ b/onadata/__init__.py @@ -7,7 +7,7 @@ from __future__ import absolute_import, unicode_literals -__version__ = "4.11.2" +__version__ = "4.12.0" # This will make sure the app is always imported when diff --git a/setup.cfg b/setup.cfg index 8d9659e160..b6bac6ae66 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = onadata -version = 4.11.2 +version = 4.12.0 description = Collect Analyze and Share Data long_description = file: README.rst long_description_content_type = text/x-rst