From 2f773593a1be0b0e5800722fc43069559f9a6ba8 Mon Sep 17 00:00:00 2001 From: Kelvin Muchiri Date: Wed, 13 Sep 2023 17:19:03 +0300 Subject: [PATCH] tag release candidate v3.13.1 (#2476) --- CHANGES.rst | 6 ++++++ onadata/__init__.py | 2 +- setup.cfg | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index f7a281774e..0da14d42ca 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -3,6 +3,12 @@ Changelog for Onadata ``* represents releases that introduce new migrations`` +v3.13.1(2023-09-13) +------------------- +- Revert to have data exports default sorting by id + `PR #2474 ` + [@kelvin-muchiri] + v3.13.0(2023-09-04) ------------------- - Add project and form level odk submission-list and download endpoints diff --git a/onadata/__init__.py b/onadata/__init__.py index 27689c27b6..64f9e5359a 100644 --- a/onadata/__init__.py +++ b/onadata/__init__.py @@ -6,7 +6,7 @@ """ from __future__ import absolute_import, unicode_literals -__version__ = "3.13.0" +__version__ = "3.13.1" # This will make sure the app is always imported when diff --git a/setup.cfg b/setup.cfg index 10c59827f0..745996bffb 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = onadata -version = 3.13.0 +version = 3.13.1 description = Collect Analyze and Share Data long_description = file: README.rst long_description_content_type = text/x-rst