diff options
author | ankitjavalkar | 2021-01-12 10:05:22 +0530 |
---|---|---|
committer | ankitjavalkar | 2021-01-12 10:05:22 +0530 |
commit | 229c24c2f96d2b709772f9f8e2cf8261600ec442 (patch) | |
tree | c4d60463285c1f1328fdd54ec18d14aa5ba55d63 | |
parent | 30dd519ba7a5277348960a696f3a7cbd91f3f72f (diff) | |
download | online_test-229c24c2f96d2b709772f9f8e2cf8261600ec442.tar.gz online_test-229c24c2f96d2b709772f9f8e2cf8261600ec442.tar.bz2 online_test-229c24c2f96d2b709772f9f8e2cf8261600ec442.zip |
Release related changes
-rw-r--r-- | CHANGELOG.txt | 7 | ||||
-rw-r--r-- | online_test/__init__.py | 2 |
2 files changed, 8 insertions, 1 deletions
diff --git a/CHANGELOG.txt b/CHANGELOG.txt index 56b058b..f6ef277 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -1,3 +1,10 @@ +=== 0.30.0 (12-01-2021) === + +* Add new UI skin. +* Add feature to count number of times MCQ option has been selected. +* Fix bug to delete and recreate fresh question papers when using god mode or user mode. +* Add feature to show stats for number of times MCQ option has been selected. + === 0.29.3 (10-12-2020) === * Show the graphs for the lesson video statistics page. diff --git a/online_test/__init__.py b/online_test/__init__.py index 267ddf3..09a303b 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.29.3' +__version__ = '0.30.0' |