Skip to content

Commit 934c825

Browse files
committed
astro(chore[version]): Align astro stack to 0.0.1a16 after rebase
why: Workspace lockstep test fails when astro packages diverge from the rest of the workspace. After rebasing onto post-PR-#29 main, the shared workspace floor is 0.0.1a16; bring the five astro-stack literals up to match. what: - Bump packages/gp-sphinx-astro-builder/pyproject.toml version → a16 - Bump _EXTENSION_VERSION in gp_sphinx_astro_builder/__init__.py → a16 - Bump VERSION in astro/packages/theme/src/index.ts → a16 - Update Vitest smoke expectation → a16 - Bump VERSION in astro/apps/gp-sphinx-docs/src/components/TopNav.astro → a16 - Refresh uv.lock so gp-sphinx-astro-builder resolves at a16
1 parent 7764600 commit 934c825

6 files changed

Lines changed: 6 additions & 6 deletions

File tree

astro/apps/gp-sphinx-docs/src/components/TopNav.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
1212
import SearchBox from './SearchBox.astro'
1313
14-
const VERSION = '0.0.1a12'
14+
const VERSION = '0.0.1a16'
1515
const GITHUB_URL = 'https://github.com/git-pull/gp-sphinx'
1616
---
1717

astro/packages/theme/src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@
66
* `gp-sphinx-astro-builder` Sphinx extension.
77
*/
88

9-
export const VERSION = '0.0.1a12'
9+
export const VERSION = '0.0.1a16'

astro/packages/theme/test/smoke.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { VERSION } from '../src/index.ts'
44

55
describe('@gp-sphinx-astro/theme toolchain smoke', () => {
66
test('package exports VERSION constant', () => {
7-
expect(VERSION).toBe('0.0.1a12')
7+
expect(VERSION).toBe('0.0.1a16')
88
})
99

1010
test('zod v4 is importable and validates a basic schema', () => {

packages/gp-sphinx-astro-builder/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "gp-sphinx-astro-builder"
3-
version = "0.0.1a12"
3+
version = "0.0.1a16"
44
description = "Sphinx builder that emits typed JSON for Astro static sites"
55
requires-python = ">=3.10,<4.0"
66
authors = [

packages/gp-sphinx-astro-builder/src/gp_sphinx_astro_builder/__init__.py

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

129129
logging.getLogger(__name__).addHandler(logging.NullHandler())
130130

131-
_EXTENSION_VERSION = "0.0.1a12"
131+
_EXTENSION_VERSION = "0.0.1a16"
132132

133133

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

uv.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)