From 73699982a7579c3b203b32347804db2c6e942847 Mon Sep 17 00:00:00 2001 From: Zachary Hancock Date: Tue, 10 Jan 2023 16:15:32 -0500 Subject: [PATCH] feat: new release for url settings (#323) --- CHANGELOG.rst | 4 ++++ lti_consumer/__init__.py | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 8f895f9c..e0de2c91 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -16,6 +16,10 @@ Please See the [releases tab](https://github.com/openedx/xblock-lti-consumer/rel Unreleased ~~~~~~~~~~ +7.2.1 - 2023-01-10 +------------------ +* Adds support for LTI_BASE and LTI_API_BASE Django settings to allow URL configuration independent of LMS settings. + 7.2.0 - 2022-12-15 ------------------ diff --git a/lti_consumer/__init__.py b/lti_consumer/__init__.py index a2af6c5c..7e102b6a 100644 --- a/lti_consumer/__init__.py +++ b/lti_consumer/__init__.py @@ -4,4 +4,4 @@ from .apps import LTIConsumerApp from .lti_xblock import LtiConsumerXBlock -__version__ = '7.2.0' +__version__ = '7.2.1'