Skip to content

Commit

Permalink
Merge pull request #1086 from openedx/ashultz0/oneyear
Browse files Browse the repository at this point in the history
feat: adjust verification time to one year
  • Loading branch information
ashultz0 authored Oct 27, 2022
2 parents ab8b56c + 6e6799b commit 41a3c59
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 3 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@ Change Log
Unreleased
~~~~~~~~~~
[4.13.1] - 2022-10-27
~~~~~~~~~~~~~~~~~~~~~
* Adjust verification time to one year down from two

[4.13.0] - 2022-10-26
~~~~~~~~~~~~~~~~~~~~~
Expand Down
2 changes: 1 addition & 1 deletion edx_proctoring/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
"""

# Be sure to update the version number in edx_proctoring/package.json
__version__ = '4.13.0'
__version__ = '4.13.1'

default_app_config = 'edx_proctoring.apps.EdxProctoringConfig' # pylint: disable=invalid-name
2 changes: 1 addition & 1 deletion edx_proctoring/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@

MINIMUM_TIME = datetime.datetime.fromtimestamp(0)

VERIFICATION_DAYS_VALID = 730
VERIFICATION_DAYS_VALID = 365

PING_FAILURE_PASSTHROUGH_TEMPLATE = 'edx_proctoring.{}_ping_failure_passthrough'

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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": "4.13.0",
"version": "4.13.1",
"main": "edx_proctoring/static/index.js",
"scripts": {
"test": "gulp test"
Expand Down

0 comments on commit 41a3c59

Please sign in to comment.