Skip to content

Commit 2a37c2c

Browse files
committed
chore: bump version to 0.2.0
Version Update: 0.1.4 → 0.2.0 (MINOR) Reason: Major feature additions (User Journey Analysis + Templates Organization) Changes: - pyproject.toml: version = "0.2.0" - src/metaspec/__init__.py: __version__ = "0.2.0" - src/metaspec/cli/main.py: Use dynamic __version__ instead of hardcoded - CHANGELOG.md: Mark [0.2.0] - 2025-11-07 Type: MINOR version bump - ✅ New features (User Journey Analysis, Templates Organization) - ✅ Backward compatible - ✅ No breaking changes Semantic Versioning: https://semver.org/spec/v2.0.0.html
1 parent 969c7da commit 2a37c2c

File tree

4 files changed

+6
-3
lines changed

4 files changed

+6
-3
lines changed

CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [0.2.0] - 2025-11-07
11+
1012
### ✨ Major Feature - User-Centered Toolkit Design
1113

1214
**Added User Journey Analysis to `/metaspec.sdd.specify`** (Based on mcp-speckit feedback)

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.1.4"
3+
version = "0.2.0"
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.1.4"
8+
__version__ = "0.2.0"
99

1010
__all__ = ["__version__"]
1111

src/metaspec/cli/main.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,8 @@ def version_command() -> None:
3434
"""
3535
Show version information.
3636
"""
37-
console.print("MetaSpec version 0.1.3")
37+
from metaspec import __version__
38+
console.print(f"MetaSpec version {__version__}")
3839

3940

4041
@app.callback()

0 commit comments

Comments
 (0)