diff --git a/CHANGES.rst b/CHANGES.rst index b93dcb359c..9e431fd5b4 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -3,6 +3,18 @@ Changelog for Onadata ``* represents releases that introduce new migrations`` +v4.11.2(2025-01-22) +------------------- +- Fix exception Instance.DoesNotExist when registering Instance repeats + `PR #2763 ` + [@kelvin-muchiri] +- Allow unapproved submissions when registering export repeats + `PR #2764 ` + [@kelvin-muchiri] +- Update ona-oidc to v1.1.3 + `PR #2766 ` + [@FrankApiyo] + v4.11.1(2025-01-17) ------------------- - Do not create export register when Instance is saved diff --git a/onadata/__init__.py b/onadata/__init__.py index f3e2e33698..ba26adc0b1 100644 --- a/onadata/__init__.py +++ b/onadata/__init__.py @@ -7,7 +7,7 @@ from __future__ import absolute_import, unicode_literals -__version__ = "4.11.1" +__version__ = "4.11.2" # This will make sure the app is always imported when diff --git a/setup.cfg b/setup.cfg index 6af4394385..8d9659e160 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = onadata -version = 4.11.1 +version = 4.11.2 description = Collect Analyze and Share Data long_description = file: README.rst long_description_content_type = text/x-rst