diff --git a/CHANGES.rst b/CHANGES.rst index 8790e85fc4..1300449e89 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -3,6 +3,27 @@ Changelog for Onadata ``* represents releases that introduce new migrations`` +v4.0.1(2024-04-15) +------------------ +- When an odk token expires is None, deactivate and replace + `PR #2583 ` + [@FrankApiyo] +- Flatten select multiples in repeating sections during CSV import + `PR #2578 ` + [@kelvin-muchiri] + +v4.0.0(2024-04-08) +------------------ +- Remove redundant Dockerfile used for development + `PR #2575 ` + [@kelvin-muchiri] +- Add user to organization asynchronously + `PR #2574 ` + [@kelvin-muchiri] +- Upgrade to Django 4.2 + `PR #2572 ` + [@ukanga] + v3.19.0(2024-03-26) ------------------- - Security Remediations diff --git a/onadata/__init__.py b/onadata/__init__.py index 8fc1ffb3e5..bfb9f379c4 100644 --- a/onadata/__init__.py +++ b/onadata/__init__.py @@ -6,7 +6,7 @@ """ from __future__ import absolute_import, unicode_literals -__version__ = "4.0.0" +__version__ = "4.0.1" # This will make sure the app is always imported when diff --git a/setup.cfg b/setup.cfg index abb7e495ee..e55af82d42 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = onadata -version = 4.0.0 +version = 4.0.1 description = Collect Analyze and Share Data long_description = file: README.rst long_description_content_type = text/x-rst