diff options
| author | Gertjan van den Burg <gertjanvandenburg@gmail.com> | 2019-09-05 16:30:49 +0100 |
|---|---|---|
| committer | Gertjan van den Burg <gertjanvandenburg@gmail.com> | 2019-09-05 16:30:49 +0100 |
| commit | fd7b2172b4466795d5339c1baef4a093ce27d7c1 (patch) | |
| tree | 9a868bf9905d69d6767429f5558b247cd50ba1b8 | |
| parent | Add implementation note on how missing values are handled (diff) | |
| download | AnnotateChange-fd7b2172b4466795d5339c1baef4a093ce27d7c1.tar.gz AnnotateChange-fd7b2172b4466795d5339c1baef4a093ce27d7c1.zip | |
Bump version and update changelog
| -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 |
