summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG.txt16
-rw-r--r--online_test/__init__.py2
-rw-r--r--yaksh/migrations/0012_release_0_8_1.py25
3 files changed, 42 insertions, 1 deletions
diff --git a/CHANGELOG.txt b/CHANGELOG.txt
index 01d80dd..d603d34 100644
--- a/CHANGELOG.txt
+++ b/CHANGELOG.txt
@@ -1,3 +1,19 @@
+=== 0.8.1 (18-06-2018) ===
+
+* Fixed a bug where quiz completion shows inprogress even after completing.
+* Changed send bulk mail to add recipients to BCC list instead of TO list.
+* Changed course status feature to view student progress more easily and quickly.
+* Changed student course dashboard to view completion percentage per module and
+ overall course.
+* Added support for nose asserts for python assertion based evaluation.
+* Added a new feature to show error line number in student code for python
+ based questions only.
+* Replaced django render_to_response function with render function in views.
+* Upgraded Django version from 1.9.5 to 1.10.
+* Fixed pep8 for the code base.
+* Fixed a bug that allows answer to be true if there are no test cases to a code
+ question.
+
=== 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.
diff --git a/online_test/__init__.py b/online_test/__init__.py
index 32a90a3..ef72cc0 100644
--- a/online_test/__init__.py
+++ b/online_test/__init__.py
@@ -1 +1 @@
-__version__ = '0.8.0'
+__version__ = '0.8.1'
diff --git a/yaksh/migrations/0012_release_0_8_1.py b/yaksh/migrations/0012_release_0_8_1.py
new file mode 100644
index 0000000..a6df02e
--- /dev/null
+++ b/yaksh/migrations/0012_release_0_8_1.py
@@ -0,0 +1,25 @@
+# -*- coding: utf-8 -*-
+# Generated by Django 1.10 on 2018-06-18 06:13
+from __future__ import unicode_literals
+
+from django.db import migrations, models
+
+
+class Migration(migrations.Migration):
+
+ dependencies = [
+ ('yaksh', '0011_release_0_8_0'),
+ ]
+
+ operations = [
+ migrations.AddField(
+ model_name='coursestatus',
+ name='percent_completed',
+ field=models.IntegerField(default=0),
+ ),
+ migrations.AlterField(
+ model_name='quiz',
+ name='time_between_attempts',
+ field=models.FloatField(default=0.0, verbose_name='Time Between Quiz Attempts in hours'),
+ ),
+ ]