diff --git a/CHANGELOG.rst b/CHANGELOG.rst index b8e5ab2d9c3..9f8ba7cdf64 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -14,6 +14,10 @@ Change Log Unreleased ~~~~~~~~~~ +[3.20.6] - 2021-07-22 +~~~~~~~~~~~~~~~~~~~~~ +* Removed use of name field in proctored exam attempt admin. + [3.20.5] - 2021-07-21 ~~~~~~~~~~~~~~~~~~~~~ * No changes, gets tag and internal version in sync diff --git a/edx_proctoring/__init__.py b/edx_proctoring/__init__.py index 681384adeb3..e75ce94b16b 100644 --- a/edx_proctoring/__init__.py +++ b/edx_proctoring/__init__.py @@ -3,6 +3,6 @@ """ # Be sure to update the version number in edx_proctoring/package.json -__version__ = '3.20.5' +__version__ = '3.20.6' default_app_config = 'edx_proctoring.apps.EdxProctoringConfig' # pylint: disable=invalid-name diff --git a/edx_proctoring/admin.py b/edx_proctoring/admin.py index e366ed4d575..a03d24a672e 100644 --- a/edx_proctoring/admin.py +++ b/edx_proctoring/admin.py @@ -433,7 +433,6 @@ class ProctoredExamStudentAttemptAdmin(admin.ModelAdmin): 'allowed_time_limit_mins', 'taking_as_proctored', 'is_sample_attempt', - 'student_name', 'review_policy_id', 'is_status_acknowledged', 'time_remaining_seconds' diff --git a/package.json b/package.json index 30a3051fddf..e0ab1a6cd76 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "@edx/edx-proctoring", "//": "Note that the version format is slightly different than that of the Python version when using prereleases.", - "version": "3.20.5", + "version": "3.20.6", "main": "edx_proctoring/static/index.js", "scripts": { "test": "gulp test"