Skip to content

Commit ebe75cb

Browse files
committed
Release v0.0.1a12
why: Cut the next alpha covering the iOS Safari SPA-nav sidebar-logo fix (pushState ordering so relative asset URLs resolve against the new page, not the old one — a WebKit-only resolution-timing bug). what: - just bump-version 0.0.1a12: every workspace package's pyproject.toml version, every __init__.py / extension.py __version__, the workspace pyproject.toml, scripts/ci helpers and matching test, and uv.lock all advance to 0.0.1a12. - CHANGES gains a dated "## gp-sphinx 0.0.1a12 (2026-04-27)" release header above the existing Bug fixes content; the "## gp-sphinx 0.0.1 (unreleased)" placeholder + maintainer comment stays at the top of the file as the next-release insertion point.
1 parent 48d5ff2 commit ebe75cb

30 files changed

Lines changed: 69 additions & 67 deletions

File tree

CHANGES

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@ $ uv add gp-sphinx --prerelease allow
1818

1919
<!-- To maintainers and contributors: Please add notes for the forthcoming version below -->
2020

21+
## gp-sphinx 0.0.1a12 (2026-04-27)
22+
2123
### Bug fixes
2224

2325
#### `sphinx-gp-theme`: Sidebar logo no longer disappears on iOS Safari during navigation

packages/gp-sphinx/pyproject.toml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "gp-sphinx"
3-
version = "0.0.1a11"
3+
version = "0.0.1a12"
44
description = "Shared Sphinx documentation platform for git-pull projects"
55
requires-python = ">=3.10,<4.0"
66
authors = [
@@ -26,15 +26,15 @@ readme = "README.md"
2626
keywords = ["sphinx", "documentation", "configuration"]
2727
dependencies = [
2828
"sphinx>=8.1,<9",
29-
"sphinx-gp-theme==0.0.1a11",
30-
"sphinx-fonts==0.0.1a11",
29+
"sphinx-gp-theme==0.0.1a12",
30+
"sphinx-fonts==0.0.1a12",
3131
"myst-parser",
3232
"docutils",
33-
"sphinx-autodoc-typehints-gp==0.0.1a11",
33+
"sphinx-autodoc-typehints-gp==0.0.1a12",
3434
"sphinx-inline-tabs",
3535
"sphinx-copybutton",
36-
"sphinx-gp-opengraph==0.0.1a11",
37-
"sphinx-gp-sitemap==0.0.1a11",
36+
"sphinx-gp-opengraph==0.0.1a12",
37+
"sphinx-gp-sitemap==0.0.1a12",
3838
"sphinxext-rediraffe",
3939
"sphinx-design",
4040
"linkify-it-py",
@@ -43,7 +43,7 @@ dependencies = [
4343

4444
[project.optional-dependencies]
4545
argparse = [
46-
"sphinx-autodoc-argparse==0.0.1a11",
46+
"sphinx-autodoc-argparse==0.0.1a12",
4747
]
4848

4949
[project.urls]

packages/gp-sphinx/src/gp_sphinx/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
__title__ = "gp-sphinx"
88
__package_name__ = "gp_sphinx"
99
__description__ = "Shared Sphinx documentation platform for git-pull projects"
10-
__version__ = "0.0.1a11"
10+
__version__ = "0.0.1a12"
1111
__author__ = "Tony Narlock"
1212
__github__ = "https://github.com/git-pull/gp-sphinx"
1313
__docs__ = "https://gp-sphinx.git-pull.com"

packages/sphinx-autodoc-api-style/pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "sphinx-autodoc-api-style"
3-
version = "0.0.1a11"
3+
version = "0.0.1a12"
44
description = "Sphinx extension for enhanced autodoc API entry styling (badges and cards)"
55
requires-python = ">=3.10,<4.0"
66
authors = [
@@ -27,8 +27,8 @@ readme = "README.md"
2727
keywords = ["sphinx", "autodoc", "documentation", "api", "badges"]
2828
dependencies = [
2929
"sphinx>=8.1",
30-
"sphinx-ux-badges==0.0.1a11",
31-
"sphinx-ux-autodoc-layout==0.0.1a11",
30+
"sphinx-ux-badges==0.0.1a12",
31+
"sphinx-ux-autodoc-layout==0.0.1a12",
3232
]
3333

3434
[project.urls]

packages/sphinx-autodoc-argparse/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "sphinx-autodoc-argparse"
3-
version = "0.0.1a11"
3+
version = "0.0.1a12"
44
description = "Modern Sphinx extension for documenting argparse-based CLI tools"
55
requires-python = ">=3.10,<4.0"
66
authors = [

packages/sphinx-autodoc-argparse/src/sphinx_autodoc_argparse/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
if t.TYPE_CHECKING:
4545
from sphinx.application import Sphinx
4646

47-
__version__ = "0.0.1a11"
47+
__version__ = "0.0.1a12"
4848

4949

5050
class SetupDict(t.TypedDict):

packages/sphinx-autodoc-docutils/pyproject.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "sphinx-autodoc-docutils"
3-
version = "0.0.1a11"
3+
version = "0.0.1a12"
44
description = "Sphinx extension for documenting docutils directives and roles as first-class reference entries"
55
requires-python = ">=3.10,<4.0"
66
authors = [
@@ -27,9 +27,9 @@ readme = "README.md"
2727
keywords = ["sphinx", "docutils", "directives", "roles", "documentation", "autodoc"]
2828
dependencies = [
2929
"sphinx>=8.1",
30-
"sphinx-ux-badges==0.0.1a11",
31-
"sphinx-ux-autodoc-layout==0.0.1a11",
32-
"sphinx-autodoc-typehints-gp==0.0.1a11",
30+
"sphinx-ux-badges==0.0.1a12",
31+
"sphinx-ux-autodoc-layout==0.0.1a12",
32+
"sphinx-autodoc-typehints-gp==0.0.1a12",
3333
]
3434

3535
[project.urls]

packages/sphinx-autodoc-docutils/src/sphinx_autodoc_docutils/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ def _add_static_path(app: Sphinx) -> None:
8383
app.add_css_file("css/sphinx_autodoc_docutils.css")
8484

8585
return {
86-
"version": "0.0.1a11",
86+
"version": "0.0.1a12",
8787
"parallel_read_safe": True,
8888
"parallel_write_safe": True,
8989
}

packages/sphinx-autodoc-fastmcp/pyproject.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "sphinx-autodoc-fastmcp"
3-
version = "0.0.1a11"
3+
version = "0.0.1a12"
44
description = "Sphinx extension for documenting FastMCP tools (cards, badges, cross-refs)"
55
requires-python = ">=3.10,<4.0"
66
authors = [
@@ -27,9 +27,9 @@ readme = "README.md"
2727
keywords = ["sphinx", "fastmcp", "mcp", "documentation", "badges"]
2828
dependencies = [
2929
"sphinx>=8.1",
30-
"sphinx-ux-badges==0.0.1a11",
31-
"sphinx-ux-autodoc-layout==0.0.1a11",
32-
"sphinx-autodoc-typehints-gp==0.0.1a11",
30+
"sphinx-ux-badges==0.0.1a12",
31+
"sphinx-ux-autodoc-layout==0.0.1a12",
32+
"sphinx-autodoc-typehints-gp==0.0.1a12",
3333
]
3434

3535
[project.urls]

packages/sphinx-autodoc-fastmcp/src/sphinx_autodoc_fastmcp/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151

5252
logging.getLogger(__name__).addHandler(logging.NullHandler())
5353

54-
_EXTENSION_VERSION = "0.0.1a11"
54+
_EXTENSION_VERSION = "0.0.1a12"
5555

5656

5757
def setup(app: Sphinx) -> dict[str, t.Any]:

0 commit comments

Comments
 (0)