diff --git a/README.md b/README.md index b675c03b..7b7e12f3 100755 --- a/README.md +++ b/README.md @@ -17,6 +17,7 @@ The following changes were made to the original app to accommodate scientific us * Added the possibility to randomize the order of questions for each survey participant. * Added the possibility to import surveys from a JSON file. * [New in v0.1.2] Added the possibility to add ranges (sliders) as question types, distinguishing between integer ranges (`range_int`) and float ranges (`range_float`). It is possible to specify min, max and step for the range by re-using the already existing `choices` field. +* [New in v0.2.0] Categories can be treated as independent sub-surveys! This is useful if one wants to create a number of batches all of which are aimed at answering the same research question, but the experimental design requires each participant to see their own batch of questions. Additionally, one can control a number of responses per batch (1 by default). Recognizing that these changes are not necessarily useful for the users of the original "django-survey-and-report" app (and that the code became more different from the original than expected initially), it was decided to create a separate package "django-scientific-survey" to acommodate these changes. diff --git a/setup.py b/setup.py index 912acaa1..86b4f6ec 100755 --- a/setup.py +++ b/setup.py @@ -37,7 +37,7 @@ setuptools.setup( name="django-scientific-survey", - version="0.1.2", + version="0.2.0", description=DESCRIPTION, long_description=LONG_DESCRIPTION, long_description_content_type="text/markdown",