From a76787ba02624ed51c608a3fcc00aa0f04ab9d4d Mon Sep 17 00:00:00 2001 From: JeanExtreme002 Date: Sat, 12 Sep 2026 02:57:02 -0300 Subject: [PATCH] chore: bump version to 3.0.1 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Patch, because everything that landed since v3.0.0 is documentation: #100 regrouped the Sphinx sidebar with toctree captions. No library code changed, so no caller can observe the difference. The bump is what Read the Docs needs. It serves `/en/stable/` from the highest semver tag, which is still v3.0.0 — the commit before the docs change — so `stable` keeps showing the old navigation even though `/en/latest/` already rebuilt from main. Tagging v3.0.1 moves `stable` onto the current docs. Also refresh the fallback `release` in `docs/conf.py`, which had been pinned at 2.0.0. It is only read when the package cannot be imported at build time, so it has never affected a Read the Docs build, but it should not drift either. --- PyMemoryEditor/__init__.py | 2 +- docs/conf.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/PyMemoryEditor/__init__.py b/PyMemoryEditor/__init__.py index 6f03310..e99021b 100644 --- a/PyMemoryEditor/__init__.py +++ b/PyMemoryEditor/__init__.py @@ -8,7 +8,7 @@ """ __author__ = "Jean Loui Bernard Silva de Jesus" -__version__ = "3.0.0" +__version__ = "3.0.1" import logging import sys diff --git a/docs/conf.py b/docs/conf.py index 238fe59..934f9bd 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -23,7 +23,7 @@ try: from PyMemoryEditor import __version__ as release except Exception: # pragma: no cover - docs can build without the package installed - release = "2.0.0" + release = "3.0.1" version = ".".join(release.split(".")[:2])