summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorankitjavalkar2020-11-05 10:17:12 +0530
committerGitHub2020-11-05 10:17:12 +0530
commit1ad9f3176c2df25df1f8fae601eef657e39f8b46 (patch)
treee71af6f2ba0744d8a661d102e18aefd45280d558
parent8924f6cb17789b15771e9b63fe5813ae5a79f16d (diff)
parent36def78754e349b3689b47e53ba375c05570e631 (diff)
downloadonline_test-1ad9f3176c2df25df1f8fae601eef657e39f8b46.tar.gz
online_test-1ad9f3176c2df25df1f8fae601eef657e39f8b46.tar.bz2
online_test-1ad9f3176c2df25df1f8fae601eef657e39f8b46.zip
Merge pull request #787 from ankitjavalkar/release_0_28v0.28.0
Release related changes
-rw-r--r--CHANGELOG.txt7
-rw-r--r--online_test/__init__.py2
-rw-r--r--yaksh/migrations/0027_release_0_28_0.py18
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),
+ ),
+ ]