diff --git a/CHANGES.rst b/CHANGES.rst index 43dae357ea..b2f3a058a5 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -3,6 +3,15 @@ Changelog for Onadata ``* represents releases that introduce new migrations`` +v4.9.1(2024-10-23) +------------------ +- Fix extra columns excluded in DataView CSV export + `PR #2727 ` + [@kelvin-muchiri] +- Remove deleted_by serializer field for Dataviews + `PR #2721 ` + [@FrankApiyo] + v4.9.0(2024-10-22) ------------------ - Update pre-commit hooks diff --git a/onadata/__init__.py b/onadata/__init__.py index eb9c4bca19..9c63a5c7e3 100644 --- a/onadata/__init__.py +++ b/onadata/__init__.py @@ -7,7 +7,7 @@ from __future__ import absolute_import, unicode_literals -__version__ = "4.9.0" +__version__ = "4.9.1" # This will make sure the app is always imported when diff --git a/setup.cfg b/setup.cfg index e94f9f206b..28640a2ec1 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = onadata -version = 4.9.0 +version = 4.9.1 description = Collect Analyze and Share Data long_description = file: README.rst long_description_content_type = text/x-rst