diff options
author | ankitjavalkar | 2021-01-12 10:22:56 +0530 |
---|---|---|
committer | GitHub | 2021-01-12 10:22:56 +0530 |
commit | dac3649dbbb31af2875f1c31ec7b0b3b5c8de886 (patch) | |
tree | ce49244404729e43ea51bed5b894b9f6bcbc2dc5 | |
parent | 99d69b5647f9cfc5686a7556768d591c05bda086 (diff) | |
parent | 229c24c2f96d2b709772f9f8e2cf8261600ec442 (diff) | |
download | online_test-dac3649dbbb31af2875f1c31ec7b0b3b5c8de886.tar.gz online_test-dac3649dbbb31af2875f1c31ec7b0b3b5c8de886.tar.bz2 online_test-dac3649dbbb31af2875f1c31ec7b0b3b5c8de886.zip |
Merge pull request #811 from ankitjavalkar/release_0_30_0v0.30.0
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' |