Skip to content

Commit 7d258b2

Browse files
committed
release: v0.1.2 - Bug fixes and documentation improvements
Changes: - Fixed namespace package issue by adding __init__.py - Made CLI tests resilient to output format differences - Clarified package naming convention (meta-spec → metaspec) Package naming follows Python convention: - PyPI: pip install meta-spec (with hyphen) - Import: import metaspec (no hyphen) - CLI: metaspec (no hyphen) Similar to scikit-learn → sklearn, python-dateutil → dateutil
1 parent 8b24807 commit 7d258b2

File tree

4 files changed

+17
-3
lines changed

4 files changed

+17
-3
lines changed

CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [0.1.2] - 2025-11-04
11+
12+
### 📚 Documentation
13+
- **Package Name Clarification**: Documented the intentional naming convention
14+
- PyPI package: `meta-spec` (with hyphen, follows Python convention)
15+
- Import name: `metaspec` (no hyphen, Python identifier)
16+
- CLI command: `metaspec` (no hyphen, for convenience)
17+
- This is standard practice in Python ecosystem (e.g., `scikit-learn``sklearn`)
18+
19+
### 🐛 Bug Fixes
20+
- Fixed namespace package issue by adding proper `__init__.py`
21+
- Made CLI option tests resilient to output format differences
22+
- Resolved test failures in CI environment
23+
1024
## [0.1.1] - 2025-11-04
1125

1226
### 📚 Documentation

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

1010
__all__ = ["__version__"]
1111

src/metaspec/cli/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ def version_command() -> None:
3434
"""
3535
Show version information.
3636
"""
37-
console.print("MetaSpec version 0.1.0")
37+
console.print("MetaSpec version 0.1.2")
3838

3939

4040
@app.callback()

0 commit comments

Comments
 (0)