Skip to content

Commit

Permalink
Merge pull request #484 from FOSSEE/release-0.8.1
Browse files Browse the repository at this point in the history
Release 0.8.1
  • Loading branch information
prathamesh920 authored Jun 18, 2018
2 parents 4eb754c + a6284b3 commit e3ad85a
Show file tree
Hide file tree
Showing 3 changed files with 42 additions and 1 deletion.
16 changes: 16 additions & 0 deletions CHANGELOG.txt
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
2 changes: 1 addition & 1 deletion online_test/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '0.8.0'
__version__ = '0.8.1'
25 changes: 25 additions & 0 deletions yaksh/migrations/0012_release_0_8_1.py
Original file line number Diff line number Diff line change
@@ -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'),
),
]

0 comments on commit e3ad85a

Please sign in to comment.