diff options
author | ankitjavalkar | 2020-10-08 16:24:07 +0530 |
---|---|---|
committer | ankitjavalkar | 2020-10-08 16:42:00 +0530 |
commit | 7c96318b1977171ba6384e7e68b6921a7d44357c (patch) | |
tree | dfdd92b4fa18fc792d0ab99f2280ed8208f1b681 | |
parent | aaf8f36bce5fff6c36bcbac3fa038ae99304b73f (diff) | |
download | online_test-7c96318b1977171ba6384e7e68b6921a7d44357c.tar.gz online_test-7c96318b1977171ba6384e7e68b6921a7d44357c.tar.bz2 online_test-7c96318b1977171ba6384e7e68b6921a7d44357c.zip |
Release related changes
-rw-r--r-- | CHANGELOG.txt | 11 | ||||
-rw-r--r-- | online_test/__init__.py | 2 |
2 files changed, 12 insertions, 1 deletions
diff --git a/CHANGELOG.txt b/CHANGELOG.txt index 9124125..f25f0a6 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -1,3 +1,14 @@ +=== 0.27.0 (08-10-2020) === + +* Fix template footer CSS +* Add lesson comments feature + +=== 0.26.0 (07-10-2020) === + +* Fix bug that sets module and lesson prerequisites to false +* Add video lesson feature +* Show assignment upload file in view answerpaper + === 0.25.0 (14-09-2020) === * Fix bug to show missing marks in grade user diff --git a/online_test/__init__.py b/online_test/__init__.py index e48d243..c9ad251 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.26.0' +__version__ = '0.27.0' |