summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG.txt8
-rw-r--r--online_test/__init__.py2
-rw-r--r--setup.py2
3 files changed, 6 insertions, 6 deletions
diff --git a/CHANGELOG.txt b/CHANGELOG.txt
index 85b1c20..01d80dd 100644
--- a/CHANGELOG.txt
+++ b/CHANGELOG.txt
@@ -1,4 +1,4 @@
-=== 0.8.0 (Tentatively on 22-03-2018) ===
+=== 0.8.0 (23-03-2018) ===
* Refactored the add_group command to allow creation of moderator group and add users to moderator group and renamed to create_moderator.
* Deprecated multiple management commands: dump_user_data, load_exam, load_question_xml, results2csv.
@@ -12,18 +12,16 @@
* Added MCQ/MCC Shuffle testcases feature for question paper.
* Added Arrange in Correct Order question type feature.
* Added a feature to create a course with lessons, quizzes and exercises.
-* Fixed a bug where a oauth users' email is not verified
+* Fixed a bug where a oauth users' email is not verified.
* Added a feature to show per student course completion status.
* Fixed a bug where a moderator could change question paper of other moderator.
* Fixed a bug where a teacher could not access question paper for a course.
* Fixed a bug where a teacher could become the course creator while editing a course.
-* Fixed a bug where a student could attempt a module even though the previous module was incomplete.
-* Added a feature where a moderator/teacher could activate or deactivate a lesson and learningmodule.
* Updated clone course feature to create copy of course, lessons, quizzes and learning modules.
* Changed Student dashboard to show the days remaining for a course to start.
* Changed UI for student and moderator dashboard.
* Updated documentation
-* Added a feature where a noderator can create exercises.
+* Added a feature where a moderator can create exercises.
* Added grading feature which allows a moderator to create a grading system and apply it for a course.
diff --git a/online_test/__init__.py b/online_test/__init__.py
index a71c5c7..32a90a3 100644
--- a/online_test/__init__.py
+++ b/online_test/__init__.py
@@ -1 +1 @@
-__version__ = '0.7.0'
+__version__ = '0.8.0'
diff --git a/setup.py b/setup.py
index 9fe5be5..83a5e42 100644
--- a/setup.py
+++ b/setup.py
@@ -6,6 +6,7 @@ README = open(os.path.join(os.path.dirname(__file__), 'README.rst')).read()
# allow setup.py to be run from any path
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
+
def get_version():
import os
data = {}
@@ -24,6 +25,7 @@ install_requires = [
'invoke==0.21.0',
'six',
'requests',
+ 'markdown==2.6.9',
]
setup(