From 53cd166b69f47bb5fcaa828669c4bbe0f9702e2e Mon Sep 17 00:00:00 2001 From: Marcos Date: Wed, 18 Dec 2024 12:19:33 -0300 Subject: [PATCH] feat: New Release v4.6.2 --- CHANGELOG.rst | 5 +++++ learning_assistant/__init__.py | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 7af2fe4..27e5be1 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -14,6 +14,11 @@ Change Log Unreleased ********** +4.6.2 - 2025-12-18 +****************** +* Fixed the params for expiration_date in the admin table for audit trial. +* Add ENABLE_XPERT_AUDIT instructions. + 4.6.1 - 2025-12-17 ****************** * Added an admin table for the LearningAssistantAuditTrial model. This table includes an expiration_date valued that is diff --git a/learning_assistant/__init__.py b/learning_assistant/__init__.py index 17c3a45..b52cec0 100644 --- a/learning_assistant/__init__.py +++ b/learning_assistant/__init__.py @@ -2,6 +2,6 @@ Plugin for a learning assistant backend, intended for use within edx-platform. """ -__version__ = '4.6.1' +__version__ = '4.6.2' default_app_config = 'learning_assistant.apps.LearningAssistantConfig' # pylint: disable=invalid-name