File tree Expand file tree Collapse file tree 3 files changed +21
-2
lines changed Expand file tree Collapse file tree 3 files changed +21
-2
lines changed Original file line number Diff line number Diff line change @@ -9,6 +9,25 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
99
1010---
1111
12+ ## [ 0.6.1] - 2025-11-14
13+
14+ ### 🐛 Bug Fixes
15+
16+ ** sync Command - PackageLoader Support**
17+ - Fixed ` metaspec sync ` failing with "Unexpected loader type" error
18+ - Now supports both ` FileSystemLoader ` (pip install) and ` PackageLoader ` (editable installs)
19+ - Added template directory existence validation
20+ - Improved error messages for troubleshooting
21+
22+ ** Impact** :
23+ - ✅ Works with: ` pip install metaspec `
24+ - ✅ Works with: ` pip install -e . ` (development mode)
25+ - ✅ Works with: ` uv pip install -e . `
26+
27+ ** Root Cause** : Code only checked for ` FileSystemLoader ` , but Generator uses ` PackageLoader ` in editable installs
28+
29+ ---
30+
1231## [ 0.6.0] - 2025-11-14
1332
1433### ✨ Features
Original file line number Diff line number Diff line change 11[project ]
22name = " meta-spec"
3- version = " 0.6.0 "
3+ version = " 0.6.1 "
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.6.0 "
8+ __version__ = "0.6.1 "
99
1010__all__ = ["__version__" ]
1111
You can’t perform that action at this time.
0 commit comments