Skip to content

Commit 62a24a2

Browse files
authored
2.2.1
2.2.1
2 parents 240a8a7 + c2c8910 commit 62a24a2

5 files changed

Lines changed: 16 additions & 9 deletions

File tree

docs/source/changelog.rst

Lines changed: 13 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,19 @@ Major release 2
99
.. raw:: html
1010

1111
<details>
12-
<summary>2.2.0</summary>
13-
<ul>
14-
<li>Add color to error messages using the textfmt module</li>
15-
</ul>
12+
<summary>2.2.0 - 2.2.1</summary>
13+
<details>
14+
<summary>2.2.1</summary>
15+
<ul>
16+
<li>Fixed importlib errors on newer python versions</li>
17+
</ul>
18+
</details>
19+
<details>
20+
<summary>2.2.0</summary>
21+
<ul>
22+
<li>Add color to error messages using the textfmt module</li>
23+
</ul>
24+
</details>
1625
</details>
1726

1827
<details>

docs/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
copyright = '2025, Rihaan Meher'
1111
author = 'Rihaan Meher'
1212

13-
release = '2.2.0'
13+
release = '2.2.1'
1414
html_favicon = "_static/icon.png"
1515

1616
# -- General configuration ---------------------------------------------------

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "restructuredpython"
7-
version = "2.2.0"
7+
version = "2.2.1"
88
description = "A superset of Python with many new features, including full JS integration, multiline comments, header files, and optional curly brackets around control statements"
99
authors = [{name = "Rihaan Meher", email = "meherrihaan@gmail.com"}]
1010
license = {text = "Apache-2.0"}

restructuredpython.egg-info/SOURCES.txt

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,6 @@ restructuredpython.egg-info/requires.txt
1414
restructuredpython.egg-info/top_level.txt
1515
restructuredpython/include/io.c
1616
restructuredpython/lib/DO_NOT_MODIFY_THIS_DIR.txt
17-
restructuredpython/lib/windows-libs/io64.dll
18-
restructuredpython/lib/windows-libs/text64.dll
1917
restructuredpython/predefined/__init__.py
2018
restructuredpython/predefined/decorators.py
2119
restructuredpython/predefined/decorators/access_control.py

restructuredpython/cload.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import importlib
1+
import importlib.util
22
import struct
33
import sys
44
import os

0 commit comments

Comments
 (0)