Skip to content

Commit

Permalink
Merge pull request #14 from edx/alangsto/remove_prompt_field
Browse files Browse the repository at this point in the history
feat: remove prompt field
  • Loading branch information
alangsto authored Aug 24, 2023
2 parents 5f7242f + 648b47d commit f5eccd1
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion learning_assistant/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
17 changes: 17 additions & 0 deletions learning_assistant/migrations/0004_remove_courseprompt_prompt.py
Original file line number Diff line number Diff line change
@@ -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',
),
]

0 comments on commit f5eccd1

Please sign in to comment.