From 87238b2f5534cbabc73114f8295c61672613b4bb Mon Sep 17 00:00:00 2001 From: Kelvin Muchiri Date: Tue, 13 Aug 2024 09:10:16 +0300 Subject: [PATCH] bump version to v4.4.0 --- CHANGES.rst | 21 +++++++++++++++++++++ onadata/__init__.py | 2 +- setup.cfg | 2 +- 3 files changed, 23 insertions(+), 2 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index 405520d1b0..f0c72e3a72 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -3,6 +3,27 @@ Changelog for Onadata ``* represents releases that introduce new migrations`` +v4.4.0(2024-08-13) +------------------ +- Fix untracked Django's view of migration state + `PR #2663 ` + [@kelvin-muchiri] +- Convert Entities docs from markdown into restructured text format + `PR #2662 ` + [@kelvin-muchiri] +- Handle exceptions from running migrations + `PR #2661 ` + [@kelvin-muchiri] +- Add ability to delete Entities in bulk + `PR #2660 ` + [@kelvin-muchiri] +- Add Entities documentation to Sphinx table of contents tree + `PR #2659 ` + [@kelvin-muchiri] +- Patch update django, sqlparse and certifi packages + `PR #2657 ` + [@KipSigei] + v4.3.4(2024-07-29) ------------------ - Entities search diff --git a/onadata/__init__.py b/onadata/__init__.py index aca9e687fa..5fba2f7f45 100644 --- a/onadata/__init__.py +++ b/onadata/__init__.py @@ -6,7 +6,7 @@ """ from __future__ import absolute_import, unicode_literals -__version__ = "4.3.4" +__version__ = "4.4.0" # This will make sure the app is always imported when diff --git a/setup.cfg b/setup.cfg index 9d1b4a1496..f4cd63fa1f 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = onadata -version = 4.3.4 +version = 4.4.0 description = Collect Analyze and Share Data long_description = file: README.rst long_description_content_type = text/x-rst