diff --git a/RELEASE.rst b/RELEASE.rst index a8d4983e79..7c05eda0f3 100644 --- a/RELEASE.rst +++ b/RELEASE.rst @@ -1,6 +1,14 @@ Release Notes ============= +Version 0.100.2 (Released September 03, 2024) +--------------- + +- Update dependency webpack to v5.94.0 [SECURITY] (#2370) +- Fix typo in unenrollment email (#2369) +- Most relevant run should be determined in the backend only (#2363) +- mitxonline dashboard crashes when courserun has no upgrade deadline (#2362) + Version 0.100.1 (Released September 03, 2024) --------------- diff --git a/main/settings.py b/main/settings.py index 5b04145147..88f02c83f0 100644 --- a/main/settings.py +++ b/main/settings.py @@ -29,7 +29,7 @@ from main.celery_utils import OffsettingSchedule from main.sentry import init_sentry -VERSION = "0.100.1" +VERSION = "0.100.2" log = logging.getLogger()