diff options
-rw-r--r-- | CHANGELOG.txt | 7 | ||||
-rw-r--r-- | online_test/__init__.py | 2 | ||||
-rw-r--r-- | yaksh/migrations/0027_release_0_28_0.py | 18 |
3 files changed, 26 insertions, 1 deletions
diff --git a/CHANGELOG.txt b/CHANGELOG.txt index f25f0a6..972af20 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -1,3 +1,10 @@ +=== 0.28.0 (04-11-2020) === + +* Add ability for added teachers to delete posts and comments +* Add feature to update marks using CSV upload +* Add feature to visualise in lesson questions +* Fix katex render to allow math inline + === 0.27.0 (08-10-2020) === * Fix template footer CSS diff --git a/online_test/__init__.py b/online_test/__init__.py index c9ad251..dc5cdab 100644 --- a/online_test/__init__.py +++ b/online_test/__init__.py @@ -4,4 +4,4 @@ from online_test.celery_settings import app as celery_app __all__ = ('celery_app',) -__version__ = '0.27.0' +__version__ = '0.28.0' diff --git a/yaksh/migrations/0027_release_0_28_0.py b/yaksh/migrations/0027_release_0_28_0.py new file mode 100644 index 0000000..a248665 --- /dev/null +++ b/yaksh/migrations/0027_release_0_28_0.py @@ -0,0 +1,18 @@ +# Generated by Django 3.0.7 on 2020-11-04 13:40 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('yaksh', '0026_release_0_27_0'), + ] + + operations = [ + migrations.AddField( + model_name='answer', + name='comment', + field=models.TextField(blank=True, null=True), + ), + ] |