Skip to content

Commit b63fcfe

Browse files
committed
chore: Release v0.9.6
## Version Updates - src/metaspec/__init__.py: 0.9.5 → 0.9.6 - pyproject.toml: 0.9.5 → 0.9.6 - CHANGELOG.md: Move Unreleased to [0.9.6] - 2025-11-22 ## Release Summary **v0.9.6 - Speckit Metadata Support** Major feature: Enable community discovery of speckit capabilities through standardized metadata in pyproject.toml Key additions: - [tool.metaspec] section in generated speckits - cli_commands: Record CLI commands speckit provides - slash_commands: Record AI commands speckit offers - sd_type: Auto-detect command system type (generic/sds/sdd/mixed) - lifecycle: Optional field for dev/non-dev domains Benefits: - Community can discover speckit capabilities - Marketplace/registry support - Compatibility checking - Search by features Commits: - 51f4788: feat: Add speckit metadata support - 46b7eff: fix: Correct metadata semantics - 56a3959: fix: Update navigation guide
1 parent 56a3959 commit b63fcfe

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
---
11+
12+
## [0.9.6] - 2025-11-22
13+
1014
### 🎯 Speckit Metadata Support in pyproject.toml
1115

1216
**Feature**: Enable community discovery of speckit capabilities through standardized metadata

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "meta-spec"
3-
version = "0.9.5"
3+
version = "0.9.6"
44
description = "Meta-specification framework for generating Spec-Driven X (SD-X) toolkits for AI agents"
55
readme = "README.md"
66
requires-python = ">=3.11"

src/metaspec/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
from YAML definitions.
66
"""
77

8-
__version__ = "0.9.5"
8+
__version__ = "0.9.6"
99

1010
__all__ = ["__version__"]
1111

0 commit comments

Comments
 (0)