Skip to content

Commit 54ffa23

Browse files
committed
build(release): Bump workspace packages to v0.0.1a1
why: The next pre-release needs all published workspace packages and internal pins to move in lockstep. what: - bump the workspace and package versions from 0.0.1a0 to 0.0.1a1 - update internal package pins, release tooling, and release docs to the new version - refresh tests and uv.lock so workspace metadata matches the new release target
1 parent aac36c6 commit 54ffa23

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

3333
```console
34-
$ git tag v0.0.1a0
34+
$ git tag v0.0.1a1
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.1a0"
3+
version = "0.0.1a1"
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.1a0",
30-
"sphinx-fonts==0.0.1a0",
29+
"sphinx-gptheme==0.0.1a1",
30+
"sphinx-fonts==0.0.1a1",
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.1a0",
45+
"sphinx-argparse-neo==0.0.1a1",
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.1a0"
10+
__version__ = "0.0.1a1"
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.1a0"
3+
version = "0.0.1a1"
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.1a0"
46+
__version__ = "0.0.1a1"
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.1a0"
3+
version = "0.0.1a1"
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
@@ -47,7 +47,7 @@ def setup(app: Sphinx) -> ExtensionMetadata:
4747
app.add_directive("autorole-index", AutoRoleIndex)
4848

4949
return {
50-
"version": "0.0.1a0",
50+
"version": "0.0.1a1",
5151
"parallel_read_safe": True,
5252
"parallel_write_safe": True,
5353
}

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.1a0"
3+
version = "0.0.1a1"
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.1a0"
3+
version = "0.0.1a1"
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
@@ -42,7 +42,7 @@ def setup(app: Sphinx) -> ExtensionMetadata:
4242
app.add_directive("autoconfigvalue-index", AutoconfigvalueIndexDirective)
4343
app.add_directive("autosphinxconfig-index", AutosphinxconfigIndexDirective)
4444
return {
45-
"version": "0.0.1a0",
45+
"version": "0.0.1a1",
4646
"parallel_read_safe": True,
4747
"parallel_write_safe": True,
4848
}

0 commit comments

Comments
 (0)