diff --git a/docs/source/changelog.rst b/docs/source/changelog.rst
index 6a2fe38..d4696bf 100644
--- a/docs/source/changelog.rst
+++ b/docs/source/changelog.rst
@@ -3,18 +3,38 @@ Changelog
*Note: This changelog skips version 0.1.1*
-Major release 2
+reStructuredPython 2
---------------
.. raw:: html
- 2.5.0
+ 2.6.0
- - Introduced <OPTIMIZE> markers, which allow restructuredpython code to be executed faster than cpython would normally when restructuredpython is installed.
+
- Add optimizations to functions
+ - Fix <OPTIMIZE> not preserving indent
+ - Add multithreading to loops
+
+ 2.5.0 - 2.5.1
+
+ 2.5.0
+
+ - Introduced <OPTIMIZE> markers, which allow restructuredpython code to be executed faster than cpython would normally when restructuredpython is installed.
+
+
+
+ 2.5.1
+
+ - Add syntax guide back for SEO and clarity by @sharktide in #95
+ - Add -v and --version flags by @sharktide in #84
+ - Explicitly state on functions does nothing by @sharktide in #109
+
+
+
+
2.4.0
@@ -70,7 +90,7 @@ Major release 2
-Major release 1
+reStructuredPython 1
---------------
.. raw:: html
@@ -91,7 +111,7 @@ Major release 1
-Major release 0
+reStructuredPython 0
---------------
.. raw:: html
diff --git a/docs/source/conf.py b/docs/source/conf.py
index efadd45..f72eae6 100644
--- a/docs/source/conf.py
+++ b/docs/source/conf.py
@@ -10,7 +10,7 @@
copyright = '2025, Rihaan Meher'
author = 'Rihaan Meher'
-release = '2.5.0'
+release = '2.6.0'
html_favicon = "_static/icon.png"
# -- General configuration ---------------------------------------------------
diff --git a/docs/source/reference/Features/OPTIMIZE.rst b/docs/source/reference/Features/OPTIMIZE.rst
index ce00c21..026d13a 100644
--- a/docs/source/reference/Features/OPTIMIZE.rst
+++ b/docs/source/reference/Features/OPTIMIZE.rst
@@ -13,16 +13,17 @@ Use ```` before a ``for`` or ``while`` loop to apply runtime enhan
.. code-block:: python
-
-for i in range(10_000_000) {
- temp = str(i) * 10
-}
+
+ for i in range(10_000_000) {
+ temp = str(i) * 10
+ }
-.. versionadded::
- Added the cache option in 2.6.0
-.. versionchanged::
- Changed the parallel functionality in 2.6.0
+.. versionadded:: 2.6.0
+ The cache option
+
+.. versionchanged:: 2.6.0
+ The parallel functionality from multiprocessing to multithreading
Arguments for on loops include: