Skip to content

Commit 9d438ce

Browse files
committed
build(release): Bump version 0.0.1a2 → 0.0.1a3
why: Advance all workspace packages to the next alpha release. what: - Update version in all 8 pyproject.toml files - Update __version__ / setup() version strings in all __init__.py files - Update inter-package pinned dependency versions in gp-sphinx - Update workspace root dependency pin - Update uv.lock - Update test assertions and docs/scripts referencing the version
1 parent 5bbb1ae commit 9d438ce

File tree

18 files changed

+32
-32
lines changed

18 files changed

+32
-32
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.1a2'
30+
$ git commit -m 'build(release): Tag v0.0.1a3'
3131
```
3232

3333
```console
34-
$ git tag v0.0.1a2
34+
$ git tag v0.0.1a3
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.1a2"
3+
version = "0.0.1a3"
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.1a2",
30-
"sphinx-fonts==0.0.1a2",
29+
"sphinx-gptheme==0.0.1a3",
30+
"sphinx-fonts==0.0.1a3",
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.1a2",
45+
"sphinx-argparse-neo==0.0.1a3",
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.1a2"
10+
__version__ = "0.0.1a3"
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.1a2"
3+
version = "0.0.1a3"
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.1a2"
46+
__version__ = "0.0.1a3"
4747

4848

4949
class SetupDict(t.TypedDict):

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.1a2"
3+
version = "0.0.1a3"
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.1a2",
49+
"version": "0.0.1a3",
5050
"parallel_read_safe": True,
5151
"parallel_write_safe": True,
5252
}

packages/sphinx-autodoc-pytest-fixtures/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-pytest-fixtures"
3-
version = "0.0.1a2"
3+
version = "0.0.1a3"
44
description = "Sphinx extension for documenting pytest fixtures as first-class objects"
55
requires-python = ">=3.10,<4.0"
66
authors = [

packages/sphinx-autodoc-sphinx/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-sphinx"
3-
version = "0.0.1a2"
3+
version = "0.0.1a3"
44
description = "Sphinx extension for documenting extension config values as first-class conf.py reference entries"
55
requires-python = ">=3.10,<4.0"
66
authors = [

packages/sphinx-autodoc-sphinx/src/sphinx_autodoc_sphinx/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ def setup(app: Sphinx) -> ExtensionMetadata:
4141
app.add_directive("autoconfigvalue-index", AutoconfigvalueIndexDirective)
4242
app.add_directive("autosphinxconfig-index", AutosphinxconfigIndexDirective)
4343
return {
44-
"version": "0.0.1a2",
44+
"version": "0.0.1a3",
4545
"parallel_read_safe": True,
4646
"parallel_write_safe": True,
4747
}

0 commit comments

Comments
 (0)