diff options
author | Palaparthy Adityachandra | 2020-05-21 13:33:22 +0530 |
---|---|---|
committer | GitHub | 2020-05-21 13:33:22 +0530 |
commit | fa656e1ce81c748b354e19e6d5b8de672a58c186 (patch) | |
tree | 3ece329ae50f318f97248530084fcf1b2d3a0629 | |
parent | 8d7f6c7cb56f6ef8116b229573371025c1dbd83e (diff) | |
parent | a927f2143877e542409aff0142d4b3fdafcd95ad (diff) | |
download | online_test-fa656e1ce81c748b354e19e6d5b8de672a58c186.tar.gz online_test-fa656e1ce81c748b354e19e6d5b8de672a58c186.tar.bz2 online_test-fa656e1ce81c748b354e19e6d5b8de672a58c186.zip |
Merge pull request #714 from FOSSEE/release_0_20_1v0.20.1
Release 0.20.1
-rw-r--r-- | CHANGELOG.txt | 6 | ||||
-rw-r--r-- | online_test/__init__.py | 2 |
2 files changed, 6 insertions, 2 deletions
diff --git a/CHANGELOG.txt b/CHANGELOG.txt index cd0c639..5151c1d 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -1,4 +1,8 @@ -=== 0.2.0 (20-05-2020) === +=== 0.20.1 (21-05-2020) === + +* Rename celery.py to celery_settings.py to avoid conflicts with the celery app + +=== 0.20.0 (20-05-2020) === * Added a discussion forum feature * Added a reject select button to reject mulitple students from a course diff --git a/online_test/__init__.py b/online_test/__init__.py index e5ad12d..39ff9a3 100644 --- a/online_test/__init__.py +++ b/online_test/__init__.py @@ -4,4 +4,4 @@ from online_test.celery_settings import app as celery_app __all__ = ('celery_app',) -__version__ = '0.2.0' +__version__ = '0.20.1' |