diff --git a/CHANGES.rst b/CHANGES.rst index b617b5d1ab..d1e8ed78f4 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -3,6 +3,18 @@ Changelog for Onadata ``* represents releases that introduce new migrations`` +v3.17.2(2023-12-18) +------------------- +- Security Updates + `PR #2529 ` + [@KipSigei] +- Enable Token Authentication on Form List API + `PR #2525 ` + [@KipSigei] +- Set AWS credentials when generating pre-signed URLS + `PR #2527 ` + [@ukanga] + v3.17.1(2023-12-11) ------------------- - Enable TokenAuthentication on briefcase viewset diff --git a/onadata/__init__.py b/onadata/__init__.py index 8ae438470b..82c545f86b 100644 --- a/onadata/__init__.py +++ b/onadata/__init__.py @@ -6,7 +6,7 @@ """ from __future__ import absolute_import, unicode_literals -__version__ = "3.17.1" +__version__ = "3.17.2" # This will make sure the app is always imported when diff --git a/setup.cfg b/setup.cfg index 741ce91201..5ce92ae823 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = onadata -version = 3.17.1 +version = 3.17.2 description = Collect Analyze and Share Data long_description = file: README.rst long_description_content_type = text/x-rst