From 8f521e4bda52374a72d54cd68371dcdbd23b3b78 Mon Sep 17 00:00:00 2001
From: Feanil Patel <feanil@tcril.org>
Date: Tue, 31 Jan 2023 11:22:12 -0500
Subject: [PATCH] feat: Bump a major version and require bleach>6.0.0

The code in this repo has been updated to work with bleach 6.0.0 and
will break with older versions so make that dependency clear in base.in
and do a major version update.
---
 lti_consumer/__init__.py | 2 +-
 requirements/base.in     | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/lti_consumer/__init__.py b/lti_consumer/__init__.py
index 0c989b3..2ac31ca 100644
--- a/lti_consumer/__init__.py
+++ b/lti_consumer/__init__.py
@@ -4,4 +4,4 @@ Runtime will load the XBlock class from here.
 from .apps import LTIConsumerApp
 from .lti_xblock import LtiConsumerXBlock
 
-__version__ = '7.3.0'
+__version__ = '8.0.0'
diff --git a/requirements/base.in b/requirements/base.in
index f946ff4..0be3630 100644
--- a/requirements/base.in
+++ b/requirements/base.in
@@ -3,7 +3,7 @@
 
 attrs
 lxml
-bleach
+bleach>=6.0.0
 django
 oauthlib
 mako
-- 
GitLab