chore: bump version to 3.0.1 - #101
Merged
Merged
Conversation
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.
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #101 +/- ##
=======================================
Coverage 89.89% 89.89%
=======================================
Files 41 41
Lines 3682 3682
=======================================
Hits 3310 3310
Misses 372 372
Flags with carried forward coverage won't be shown. Click here to find out more.
🚀 New features to boost your workflow:
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Why
Everything that landed since
v3.0.0is documentation — #100 regrouped the Sphinx sidebar with toctree captions. No library code changed, so this is a patch.The bump exists for Read the Docs. RTD serves
/en/stable/from the highest semver tag, which is stillv3.0.0— the commit before the docs change — sostablekeeps showing the old navigation even though/en/latest/already rebuilt frommainon merge. Taggingv3.0.1is what movesstableonto the current docs.What changed
PyMemoryEditor/__init__.py—__version__to3.0.1. This is the only real version declaration;pyproject.tomlreads it dynamically through[tool.hatch.version].docs/conf.py— the fallbackreleasehad been pinned at2.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 (RTD installs the package), but it should not drift either.Notes
Nothing publishes on merge:
publish.ymltriggers onrelease: published, not on a tag push. The tag and the GitHub release are separate follow-up steps.