diff --git a/RELEASE.rst b/RELEASE.rst index f3838ab8f9..a9e8c67492 100644 --- a/RELEASE.rst +++ b/RELEASE.rst @@ -1,6 +1,13 @@ Release Notes ============= +Version 0.82.1 +-------------- + +- Fixes course run selection code and standardizes it (#2017) +- Fixes the keyboard trap issue with instructor modals (#2019) +- Accessibility: tabbing through featured products improvement (#2018) + Version 0.82.0 (Released December 04, 2023) -------------- diff --git a/main/settings.py b/main/settings.py index bed645b7d0..f9104dd8c8 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.82.0" +VERSION = "0.82.1" log = logging.getLogger()