Skip to content

Commit 1ad9f31

Browse files
Merge pull request #787 from ankitjavalkar/release_0_28
Release related changes
2 parents 8924f6c + 36def78 commit 1ad9f31

File tree

3 files changed

+26
-1
lines changed

3 files changed

+26
-1
lines changed

CHANGELOG.txt

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
=== 0.28.0 (04-11-2020) ===
2+
3+
* Add ability for added teachers to delete posts and comments
4+
* Add feature to update marks using CSV upload
5+
* Add feature to visualise in lesson questions
6+
* Fix katex render to allow math inline
7+
18
=== 0.27.0 (08-10-2020) ===
29

310
* Fix template footer CSS

online_test/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@
44

55
__all__ = ('celery_app',)
66

7-
__version__ = '0.27.0'
7+
__version__ = '0.28.0'
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# Generated by Django 3.0.7 on 2020-11-04 13:40
2+
3+
from django.db import migrations, models
4+
5+
6+
class Migration(migrations.Migration):
7+
8+
dependencies = [
9+
('yaksh', '0026_release_0_27_0'),
10+
]
11+
12+
operations = [
13+
migrations.AddField(
14+
model_name='answer',
15+
name='comment',
16+
field=models.TextField(blank=True, null=True),
17+
),
18+
]

0 commit comments

Comments
 (0)