diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 33104f5..8a0de7e 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -11,6 +11,10 @@ Change Log .. There should always be an "Unreleased" section for changes pending release. +1.3.1 - 2023-08-24 +****************** +* Remove prompt field + 1.3.0 - 2023-08-24 ****************** * Remove references to prompt field diff --git a/learning_assistant/__init__.py b/learning_assistant/__init__.py index cece175..d7e938c 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__ = '1.3.0' +__version__ = '1.3.1' default_app_config = 'learning_assistant.apps.LearningAssistantConfig' # pylint: disable=invalid-name diff --git a/learning_assistant/migrations/0004_remove_courseprompt_prompt.py b/learning_assistant/migrations/0004_remove_courseprompt_prompt.py new file mode 100644 index 0000000..b1d1738 --- /dev/null +++ b/learning_assistant/migrations/0004_remove_courseprompt_prompt.py @@ -0,0 +1,17 @@ +# Generated by Django 3.2.20 on 2023-08-24 14:15 + +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('learning_assistant', '0003_courseprompt_json_prompt_content'), + ] + + operations = [ + migrations.RemoveField( + model_name='courseprompt', + name='prompt', + ), + ]