Skip to content

Commit

Permalink
Version 1.0.2 - updating version number, zip file, example course
Browse files Browse the repository at this point in the history
  • Loading branch information
jolyonb committed Dec 27, 2017
1 parent 5f43ea4 commit e2b82ec
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

A library of graders for edX Custom Response problems.

Version 1.0.1 ([changelog](changelog.md))
Version 1.0.2 ([changelog](changelog.md))

Copyright 2017 Jolyon Bloomfield and Chris Chudzicki

Expand Down
7 changes: 7 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Change Log

## Version 1.0.2

* Added error messages for overflow, division-by-zero, and out-of-domain errors in formulas
* Added tests to reach 100% coverage
* Removed redundant code
* Fixed some bugs in unused code

## Version 1.0.1

* Added DependentSampler
Expand Down
2 changes: 2 additions & 0 deletions course/problem/formula1.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@
<li>m(1-sin(2*m)) (forgot multiplication before brackets)</li>
<li>m*(1-sin(2m)) (forgot multiplication in 2*m)</li>
<li>x*(1-sin(2m)) (unknown variable x)</li>
<li>1/0 (division by zero)</li>
<li>10^400 (overflow)</li>
</ul>

<script type="text/python" system_path="python_lib">
Expand Down
2 changes: 1 addition & 1 deletion mitxgraders/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@
Version number
"""

__version__ = "1.0.1"
__version__ = "1.0.2"
Binary file modified python_lib.zip
Binary file not shown.

0 comments on commit e2b82ec

Please sign in to comment.