File tree Expand file tree Collapse file tree 4 files changed +17
-3
lines changed Expand file tree Collapse file tree 4 files changed +17
-3
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change 11[project ]
22name = " meta-spec"
3- version = " 0.1.1 "
3+ version = " 0.1.2 "
44description = " Meta-specification framework for generating Spec-Driven X (SD-X) toolkits for AI agents"
55readme = " README.md"
66requires-python = " >=3.11"
Original file line number Diff line number Diff line change 55from YAML definitions.
66"""
77
8- __version__ = "0.1.1 "
8+ __version__ = "0.1.2 "
99
1010__all__ = ["__version__" ]
1111
Original file line number Diff line number Diff 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 ()
You can’t perform that action at this time.
0 commit comments