From 8ac143da7905e43ad4a409e2d2eeee02c3f84d85 Mon Sep 17 00:00:00 2001
From: Mohammad Ahtasham ul Hassan <60315450+aht007@users.noreply.github.com>
Date: Tue, 1 Feb 2022 17:17:13 +0500
Subject: [PATCH] fix: fix Version Number

Version 3.3.0 has already been released on PyPi but it was never updated here in that PR and hence there was inconsistency in the version number leading to wrong version bump in the successive PRs. This PR fixes the issue with the version number
---
 lti_consumer/__init__.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lti_consumer/__init__.py b/lti_consumer/__init__.py
index 10ea9b7..f6eca10 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__ = '3.3.0'
+__version__ = '3.4.0'
-- 
GitLab