Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 13 additions & 4 deletions docs/source/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,19 @@ Major release 2
.. raw:: html

<details>
<summary>2.2.0</summary>
<ul>
<li>Add color to error messages using the textfmt module</li>
</ul>
<summary>2.2.0 - 2.2.1</summary>
<details>
<summary>2.2.1</summary>
<ul>
<li>Fixed importlib errors on newer python versions</li>
</ul>
</details>
<details>
<summary>2.2.0</summary>
<ul>
<li>Add color to error messages using the textfmt module</li>
</ul>
</details>
</details>

<details>
Expand Down
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 ---------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"}
Expand Down
2 changes: 0 additions & 2 deletions restructuredpython.egg-info/SOURCES.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion restructuredpython/cload.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import importlib
import importlib.util
import struct
import sys
import os
Expand Down