Skip to content

Commit ffe4b5e

Browse files
committed
chore(release): bump workspace prerelease 0.0.1a5 -> 0.0.1a6
why: Keep all workspace packages and the lockfile on one lockstep version for the next developmental release. what: - Raise project.version and internal == pins across pyproject.toml files - Bump __version__ and extension metadata strings - Update package_tools smoke conf, test_package_tools, and releasing docs examples - Regenerate uv.lock
1 parent b24601e commit ffe4b5e

File tree

23 files changed

+43
-43
lines changed

23 files changed

+43
-43
lines changed

docs/project/releasing.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,11 @@ building, and publishing. There is no setup.py or requirements files.
2727
5. Commit and tag with the repo-wide release format:
2828

2929
```console
30-
$ git commit -m 'build(release): Tag v0.0.1a5'
30+
$ git commit -m 'build(release): Tag v0.0.1a6'
3131
```
3232

3333
```console
34-
$ git tag v0.0.1a5
34+
$ git tag v0.0.1a6
3535
```
3636

3737
6. Push:

packages/gp-sphinx/pyproject.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "gp-sphinx"
3-
version = "0.0.1a5"
3+
version = "0.0.1a6"
44
description = "Shared Sphinx documentation platform for git-pull projects"
55
requires-python = ">=3.10,<4.0"
66
authors = [
@@ -26,8 +26,8 @@ readme = "README.md"
2626
keywords = ["sphinx", "documentation", "configuration"]
2727
dependencies = [
2828
"sphinx<9",
29-
"sphinx-gptheme==0.0.1a5",
30-
"sphinx-fonts==0.0.1a5",
29+
"sphinx-gptheme==0.0.1a6",
30+
"sphinx-fonts==0.0.1a6",
3131
"myst-parser",
3232
"docutils",
3333
"sphinx-autodoc-typehints",
@@ -42,7 +42,7 @@ dependencies = [
4242

4343
[project.optional-dependencies]
4444
argparse = [
45-
"sphinx-argparse-neo==0.0.1a5",
45+
"sphinx-argparse-neo==0.0.1a6",
4646
]
4747

4848
[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.1a5"
10+
__version__ = "0.0.1a6"
1111
__author__ = "Tony Narlock"
1212
__github__ = "https://github.com/git-pull/gp-sphinx"
1313
__docs__ = "https://gp-sphinx.git-pull.com"

packages/sphinx-argparse-neo/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-argparse-neo"
3-
version = "0.0.1a5"
3+
version = "0.0.1a6"
44
description = "Modern Sphinx extension for documenting argparse-based CLI tools"
55
requires-python = ">=3.10,<4.0"
66
authors = [

packages/sphinx-argparse-neo/src/sphinx_argparse_neo/__init__.py

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

46-
__version__ = "0.0.1a5"
46+
__version__ = "0.0.1a6"
4747

4848

4949
class SetupDict(t.TypedDict):

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

Lines changed: 2 additions & 2 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.1a5"
3+
version = "0.0.1a6"
44
description = "Sphinx extension for enhanced autodoc API entry styling (badges and cards)"
55
requires-python = ">=3.10,<4.0"
66
authors = [
@@ -27,7 +27,7 @@ readme = "README.md"
2727
keywords = ["sphinx", "autodoc", "documentation", "api", "badges"]
2828
dependencies = [
2929
"sphinx",
30-
"sphinx-autodoc-badges==0.0.1a5",
30+
"sphinx-autodoc-badges==0.0.1a6",
3131
]
3232

3333
[project.urls]

packages/sphinx-autodoc-badges/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-badges"
3-
version = "0.0.1a5"
3+
version = "0.0.1a6"
44
description = "Shared badge node and CSS for Sphinx autodoc extensions"
55
requires-python = ">=3.10,<4.0"
66
authors = [

packages/sphinx-autodoc-badges/src/sphinx_autodoc_badges/__init__.py

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

4141
logging.getLogger(__name__).addHandler(logging.NullHandler())
4242

43-
_EXTENSION_VERSION = "0.0.1a5"
43+
_EXTENSION_VERSION = "0.0.1a6"
4444

4545

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

packages/sphinx-autodoc-docutils/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-docutils"
3-
version = "0.0.1a5"
3+
version = "0.0.1a6"
44
description = "Sphinx extension for documenting docutils directives and roles as first-class reference entries"
55
requires-python = ">=3.10,<4.0"
66
authors = [

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ def setup(app: Sphinx) -> ExtensionMetadata:
4646
app.add_directive("autorole-index", AutoRoleIndex)
4747

4848
return {
49-
"version": "0.0.1a5",
49+
"version": "0.0.1a6",
5050
"parallel_read_safe": True,
5151
"parallel_write_safe": True,
5252
}

0 commit comments

Comments
 (0)