Bump theme to 0.4.12 - #254
Merged
Merged
Conversation
Picks up the search relevance fix (#252) and the GitHub Actions Node 20 bumps (#253). Goes straight from 0.4.10 to 0.4.12. 0.4.11 was published to PyPI on 2026-05-19 from the `bump-theme-0.4.11` branch, which was never merged, so the branch still read 0.4.10 and there is no 0.4.11 changelog entry. This bump lands on the branch so the next release does not inherit the same gap. Test Plan: ``` python3 -c "import pytorch_sphinx_theme2 as t; print(t.__version__)" grep -rn '0\.4\.12' setup.py pytorch_sphinx_theme2/__init__.py ``` All three version strings (setup.py, __version__, and the dict returned by setup()) report 0.4.12. Authored with the assistance of an AI coding agent. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
✅ Deploy Preview for pytorchsphinxtheme ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
0.4.11 shipped to PyPI on 2026-05-19 but its bump branch was never merged, so the changelog jumped 0.4.10 to 0.4.12 while the code it contained (#251) is on the branch and reaches anyone upgrading from 0.4.10. Recording it as its own section keeps that accurate for both sets of users, rather than folding it into v0.4.12 and telling existing 0.4.11 users about changes they already have. Authored with the assistance of an AI coding agent. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
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.
Release bump picking up:
nn.linearnow returnstorch.nn.Linearfirst instead of rank 29)Updates all three version strings (
setup.py,__version__, and the dict returned bysetup()) plus a CHANGELOG entry.Why 0.4.10 → 0.4.12
0.4.11 was published to PyPI on 2026-05-19, but from the
bump-theme-0.4.11branch, which was never merged. Sopytorch_sphinx_theme2still read0.4.10and the changelog has no 0.4.11 entry. This bump lands on the branch so the next release does not inherit the same gap.The 0.4.11 changelog entry is deliberately not backfilled here — that release corresponds to #251, but reconstructing it after the fact felt like it should be someone's explicit call rather than something folded into a version bump. Happy to add it if wanted.
Test plan
Authored with the assistance of an AI coding agent.