diff --git a/CHANGES.rst b/CHANGES.rst index 1af7c8c63b..7aafe57b90 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -3,6 +3,16 @@ Changelog for Onadata ``* represents releases that introduce new migrations`` +v3.10.1(2023-07-20) +------------------- + +- Upgrade django to v3.2.20 + `PR #2454 ` + [@KipSigei] +- Optimize attachments endpoint + `PR #2452 ` + [@KipSigei] + v3.10.0(2023-07-03) ------------------- diff --git a/onadata/__init__.py b/onadata/__init__.py index 337c3e0055..671e4cfd42 100644 --- a/onadata/__init__.py +++ b/onadata/__init__.py @@ -6,7 +6,7 @@ """ from __future__ import absolute_import, unicode_literals -__version__ = "3.10.0" +__version__ = "3.10.1" # This will make sure the app is always imported when diff --git a/setup.cfg b/setup.cfg index c923121fa2..02ce64bd06 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = onadata -version = 3.10.0 +version = 3.10.1 description = Collect Analyze and Share Data long_description = file: README.rst long_description_content_type = text/x-rst