diff --git a/CHANGELOG.rst b/CHANGELOG.rst index a9ac2da..cdcef76 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -14,9 +14,14 @@ Change Log Unreleased ********** +4.4.7 - 2024-11-25 +****************** +* Fixes the Course Chat View CourseMode concatenation issue + 4.4.6 - 2024-11-22 ****************** * Gates the chat history endpoint behind a waffle flag +* Add LearningAssistantAuditTrial model 4.4.5 - 2024-11-12 ****************** diff --git a/learning_assistant/__init__.py b/learning_assistant/__init__.py index b91c801..25bfe14 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.4.6' +__version__ = '4.4.7' default_app_config = 'learning_assistant.apps.LearningAssistantConfig' # pylint: disable=invalid-name