diff --git a/docs/source/changelog.rst b/docs/source/changelog.rst
index 00ed85d..cb866f3 100644
--- a/docs/source/changelog.rst
+++ b/docs/source/changelog.rst
@@ -9,10 +9,19 @@ Major release 2
.. raw:: html
- 2.2.0
-
- - Add color to error messages using the textfmt module
-
+ 2.2.0 - 2.2.1
+
+ 2.2.1
+
+ - Fixed importlib errors on newer python versions
+
+
+
+ 2.2.0
+
+ - Add color to error messages using the textfmt module
+
+
diff --git a/docs/source/conf.py b/docs/source/conf.py
index d48c97b..ac25693 100644
--- a/docs/source/conf.py
+++ b/docs/source/conf.py
@@ -10,7 +10,7 @@
copyright = '2025, Rihaan Meher'
author = 'Rihaan Meher'
-release = '2.2.0'
+release = '2.2.1'
html_favicon = "_static/icon.png"
# -- General configuration ---------------------------------------------------
diff --git a/pyproject.toml b/pyproject.toml
index 69b12de..0231ff7 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
[project]
name = "restructuredpython"
-version = "2.2.0"
+version = "2.2.1"
description = "A superset of Python with many new features, including full JS integration, multiline comments, header files, and optional curly brackets around control statements"
authors = [{name = "Rihaan Meher", email = "meherrihaan@gmail.com"}]
license = {text = "Apache-2.0"}
diff --git a/restructuredpython.egg-info/SOURCES.txt b/restructuredpython.egg-info/SOURCES.txt
index 557ff6d..11d0624 100644
--- a/restructuredpython.egg-info/SOURCES.txt
+++ b/restructuredpython.egg-info/SOURCES.txt
@@ -14,8 +14,6 @@ restructuredpython.egg-info/requires.txt
restructuredpython.egg-info/top_level.txt
restructuredpython/include/io.c
restructuredpython/lib/DO_NOT_MODIFY_THIS_DIR.txt
-restructuredpython/lib/windows-libs/io64.dll
-restructuredpython/lib/windows-libs/text64.dll
restructuredpython/predefined/__init__.py
restructuredpython/predefined/decorators.py
restructuredpython/predefined/decorators/access_control.py
diff --git a/restructuredpython/cload.py b/restructuredpython/cload.py
index a281225..709b69b 100644
--- a/restructuredpython/cload.py
+++ b/restructuredpython/cload.py
@@ -1,4 +1,4 @@
-import importlib
+import importlib.util
import struct
import sys
import os