diff options
| -rw-r--r-- | CHANGELOG.md | 15 | ||||
| -rw-r--r-- | app/__init__.py | 2 |
2 files changed, 16 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 1763c8d..6787ff9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,20 @@ # Changelog +## Version 0.3.3 + +* Add support for downloading annotations as CSV file. +* Add support for missing values in univariate datasets + +## Version 0.3.2 + +* Score user on demo and request repeat if insufficiently accurate +* Add full name of user and add several checkboxes to registration page +* Serve static resources from our domain +* Skip NaN observations in graph +* Add random walk demo +* Don't assign task to users if they have an unfinished task +* Email annotation result to admin as backup + ## Version 0.3.0 * Add support for multidimensional datasets diff --git a/app/__init__.py b/app/__init__.py index f025603..f715b06 100644 --- a/app/__init__.py +++ b/app/__init__.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- -__version__ = "0.3.1" +__version__ = "0.3.3" import logging import os |
