Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 0.112.1 #2545

Merged
merged 3 commits into from
Feb 24, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions RELEASE.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
Release Notes
=============

Version 0.112.1
---------------

- Fix deferral error (#2544)

Version 0.112.0 (Released February 20, 2025)
---------------

Expand Down
2 changes: 1 addition & 1 deletion courses/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ def _enroll_learner_into_associated_programs():
enrollment.edx_enrolled = edx_request_success
if change_status is not None:
enrollment.change_status = change_status
enrollment.save_and_log()
enrollment.save_and_log(None)
# Case (Upgrade): When user was enrolled in free mode and now enrolls in paid mode (e.g. Verified)
# So, User has an active enrollment and the only changing thing is going to be enrollment mode
if enrollment.active and enrollment_mode_changed:
Expand Down
2 changes: 1 addition & 1 deletion main/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
from main.celery_utils import OffsettingSchedule
from main.sentry import init_sentry

VERSION = "0.112.0"
VERSION = "0.112.1"

log = logging.getLogger()

Expand Down