Skip to content

Commit a36b47b

Browse files
committed
chore: bump version to v0.6.1
Critical bug fix release for metaspec sync command
1 parent 85c086c commit a36b47b

File tree

3 files changed

+21
-2
lines changed

3 files changed

+21
-2
lines changed

CHANGELOG.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff 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

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

1010
__all__ = ["__version__"]
1111

0 commit comments

Comments
 (0)