diff options
-rw-r--r-- | CHANGELOG.txt | 14 | ||||
-rw-r--r-- | online_test/__init__.py | 2 | ||||
-rw-r--r-- | setup.py | 2 |
3 files changed, 15 insertions, 3 deletions
diff --git a/CHANGELOG.txt b/CHANGELOG.txt index 78ae41e..dc80135 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -1,3 +1,15 @@ +=== 0.11.0 (27-09-2019) === + +* Upgraded python-social-auth 0.2.19 to social-auth-app-django 3.1.0 +* Moved all download related templates to a new subfolder and added homepage link to navbar logo +* Fixed Python version used in command line installer +* Fixed HTML/CSS to prevent browser from horizontal scrolling +* Improved the download course functionality +* Fixed Nonetype error due to incorrect if-else during course code search +* Fixed course filter query to display only non trial courses on the dashboard +* Upgrade Django version +* Fixed multiple bugs in Offline and Online Yaksh interface + === 0.10.0 (24-04-2019) === * Upgraded Django version from 1.10 to 1.11.18. @@ -14,7 +26,7 @@ * Fixed the bug that prevented students from opening a quiz if status is inprogress * Changed UI on Course Status Page and Monitor Page * Added functionality to restrict access to next module based on passing previous module -* Fixed the CSV upload bug that preventeduser from being added to a new course in case the user was aready enrolled in another course +* Fixed the CSV upload bug that prevented user from being added to a new course in case the user was aready enrolled in another course === 0.9.1 (07-02-2019) === diff --git a/online_test/__init__.py b/online_test/__init__.py index 9d1bb72..f323a57 100644 --- a/online_test/__init__.py +++ b/online_test/__init__.py @@ -1 +1 @@ -__version__ = '0.10.0' +__version__ = '0.11.0' @@ -16,7 +16,7 @@ def get_version(): install_requires = [ - 'django==1.11.18', + 'django==1.11.21', 'django-taggit==0.18.1', 'pytz==2016.4', 'requests-oauthlib>=0.6.1', |